getLoadedChunks method

By: Raphfrk <raphfrk@gmail.com>
This commit is contained in:
CraftBukkit/Spigot 2011-02-04 20:11:57 +00:00
parent f7ae67a1c4
commit e4dc51e235

View file

@ -59,6 +59,10 @@ public class CraftWorld implements World {
return world.A.a( x, z );
}
public Chunk[] getLoadedChunks() {
return world.A.getLoadedChunks();
}
public void loadChunk(int x, int z) {
world.A.d(x, z);
}