Add stubs for new Bukkit API

This commit is contained in:
MattBDev 2020-03-10 17:29:37 -04:00
parent 77dfdf111a
commit 325d90fe39

View File

@ -1251,4 +1251,20 @@ public class AsyncWorld extends PassthroughExtent implements World {
@NotNull HeightmapType heightmap) throws UnsupportedOperationException {
return parent.getHighestBlockAt(location, heightmap);
}
public long getTicksPerWaterSpawns() {
throw new UnsupportedOperationException();
}
public void setTicksPerWaterSpawns(int ticksPerWaterSpawns) {
throw new UnsupportedOperationException();
}
public long getTicksPerAmbientSpawns() {
throw new UnsupportedOperationException();
}
public void setTicksPerAmbientSpawns(int ticksPerAmbientSpawns) {
throw new UnsupportedOperationException();
}
}