Implement new World interface methods

This commit is contained in:
MattBDev 2020-02-12 18:19:12 -05:00
parent b1c11c9597
commit e56e9e39ee

View File

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