3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 08:32:51 +02:00

Add stubs for new Bukkit API

Dieser Commit ist enthalten in:
MattBDev 2020-03-10 17:29:37 -04:00
Ursprung 77dfdf111a
Commit 325d90fe39

Datei anzeigen

@ -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();
}
}