3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 20:40:08 +01:00

Merge branch 'master' of github.com:Bukkit/CraftBukkit

Dieser Commit ist enthalten in:
Dinnerbone 2011-01-04 00:45:10 +00:00
Commit e3b3dcfde5

Datei anzeigen

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