getLoadedChunks method

This commit is contained in:
Raphfrk
2011-02-04 20:11:57 +00:00
committed by Erik Broes
parent 73f0347eb0
commit 101d01ef64
2 changed files with 17 additions and 0 deletions

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