mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-03 02:26:01 +02:00
Added getHighestBlockYAt
This commit is contained in:
parent
b7f7c3ffb5
commit
43db386fe4
@ -42,6 +42,10 @@ public class CraftWorld implements World {
|
||||
|
||||
return block;
|
||||
}
|
||||
|
||||
public int getHighestBlockYAt(int x, int z) {
|
||||
return world.d(x, z);
|
||||
}
|
||||
|
||||
public Chunk getChunkAt(int x, int z) {
|
||||
ChunkCoordinate loc = new ChunkCoordinate(x, z);
|
||||
|
Loading…
Reference in New Issue
Block a user