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

Implement new World interface methods

Dieser Commit ist enthalten in:
MattBDev 2020-02-12 18:19:12 -05:00
Ursprung b1c11c9597
Commit e56e9e39ee

Datei anzeigen

@ -1223,4 +1223,10 @@ public class AsyncWorld extends PassthroughExtent implements World {
throws UnsupportedOperationException {
return parent.getHighestBlockAt(x, z, heightmap);
}
@Override
public @NotNull Block getHighestBlockAt(@NotNull Location location,
@NotNull HeightmapType heightmap) throws UnsupportedOperationException {
return parent.getHighestBlockAt(location, heightmap);
}
}