mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Implement methods
This commit is contained in:
parent
366ff738e2
commit
0a721b18ce
@ -1392,6 +1392,11 @@ public class AsyncWorld extends PassthroughExtent implements World {
|
|||||||
return parent.isDayTime();
|
return parent.isDayTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public long getGameTime() {
|
||||||
|
return parent.getGameTime();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public void getChunkAtAsync(int x, int z, @NotNull ChunkLoadCallback cb) {
|
public void getChunkAtAsync(int x, int z, @NotNull ChunkLoadCallback cb) {
|
||||||
|
@ -54,7 +54,7 @@ dependencies {
|
|||||||
annotationProcessor("com.google.auto.value:auto-value:${Versions.AUTO_VALUE}")
|
annotationProcessor("com.google.auto.value:auto-value:${Versions.AUTO_VALUE}")
|
||||||
testImplementation("ch.qos.logback:logback-core:${Versions.LOGBACK}")
|
testImplementation("ch.qos.logback:logback-core:${Versions.LOGBACK}")
|
||||||
testImplementation("ch.qos.logback:logback-classic:${Versions.LOGBACK}")
|
testImplementation("ch.qos.logback:logback-classic:${Versions.LOGBACK}")
|
||||||
implementation("com.github.luben:zstd-jni:1.4.8-2")
|
implementation("com.github.luben:zstd-jni:1.4.8-4")
|
||||||
compileOnly("net.fabiozumbi12:redprotect:1.9.6")
|
compileOnly("net.fabiozumbi12:redprotect:1.9.6")
|
||||||
api("com.github.intellectualsites.plotsquared:PlotSquared-API:4.514") { isTransitive = false }
|
api("com.github.intellectualsites.plotsquared:PlotSquared-API:4.514") { isTransitive = false }
|
||||||
api("com.plotsquared:PlotSquared-Core:5.13.3") { isTransitive = false }
|
api("com.plotsquared:PlotSquared-Core:5.13.3") { isTransitive = false }
|
||||||
@ -109,7 +109,7 @@ tasks.named<Copy>("processResources") {
|
|||||||
}
|
}
|
||||||
tasks.named<ShadowJar>("shadowJar") {
|
tasks.named<ShadowJar>("shadowJar") {
|
||||||
dependencies {
|
dependencies {
|
||||||
include(dependency("com.github.luben:zstd-jni:1.4.8-2"))
|
include(dependency("com.github.luben:zstd-jni:1.4.8-4"))
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ dependencies {
|
|||||||
exclude(group = "junit", module = "junit")
|
exclude(group = "junit", module = "junit")
|
||||||
}
|
}
|
||||||
"shade"("com.thoughtworks.paranamer:paranamer:2.6")
|
"shade"("com.thoughtworks.paranamer:paranamer:2.6")
|
||||||
"shade"("com.github.luben:zstd-jni:1.4.8-2")
|
"shade"("com.github.luben:zstd-jni:1.4.8-4")
|
||||||
"shade"("com.sk89q.lib:jlibnoise:1.0.0")
|
"shade"("com.sk89q.lib:jlibnoise:1.0.0")
|
||||||
"shade"("org.enginehub.piston:core:0.5.6")
|
"shade"("org.enginehub.piston:core:0.5.6")
|
||||||
"shade"("org.enginehub.piston.core-ap:runtime:0.5.6")
|
"shade"("org.enginehub.piston.core-ap:runtime:0.5.6")
|
||||||
|
Loading…
Reference in New Issue
Block a user