mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-18 01:46:11 +00:00
Implement new World interface methods
This commit is contained in:
parent
b1c11c9597
commit
e56e9e39ee
@ -1223,4 +1223,10 @@ public class AsyncWorld extends PassthroughExtent implements World {
|
|||||||
throws UnsupportedOperationException {
|
throws UnsupportedOperationException {
|
||||||
return parent.getHighestBlockAt(x, z, heightmap);
|
return parent.getHighestBlockAt(x, z, heightmap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public @NotNull Block getHighestBlockAt(@NotNull Location location,
|
||||||
|
@NotNull HeightmapType heightmap) throws UnsupportedOperationException {
|
||||||
|
return parent.getHighestBlockAt(location, heightmap);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user