mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 11:06:29 +01:00
Merge branch 'master' of github.com:Bukkit/CraftBukkit
This commit is contained in:
commit
e3b3dcfde5
@ -43,6 +43,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);
|
||||
Chunk chunk = chunkCache.get(loc);
|
||||
|
Loading…
Reference in New Issue
Block a user