build: remove adventure dep

dependabot/gradle/org.projectlombok-lombok-1.18.34
William 5 months ago
parent aad26c3965
commit ca2604b01b
No known key found for this signature in database

@ -13,8 +13,6 @@ dependencies {
modCompileOnly 'net.fabricmc:fabric-loader:0.15.11'
modCompileOnly 'net.fabricmc.fabric-api:fabric-api:0.92.2+1.20.1'
modImplementation include('net.kyori:adventure-platform-fabric:5.9.0')
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'

@ -33,7 +33,7 @@ public record FabricCommandUser(@NotNull ServerCommandSource source) implements
@Override
public Audience getAudience() {
return source.getPlayer();
return (Audience) source.getPlayer();
}
@Override

@ -13,8 +13,6 @@ dependencies {
modCompileOnly 'net.fabricmc:fabric-loader:0.15.11'
modCompileOnly 'net.fabricmc.fabric-api:fabric-api:0.100.0+1.20.6'
modImplementation include('net.kyori:adventure-platform-fabric:5.13.0')
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'

@ -33,7 +33,7 @@ public record FabricCommandUser(@NotNull ServerCommandSource source) implements
@Override
public Audience getAudience() {
return source.getPlayer();
return (Audience) source.getPlayer();
}
@Override

Loading…
Cancel
Save