added load chunk method

This commit is contained in:
Raphfrk 2011-01-21 04:57:33 +08:00 committed by Dinner Bone
parent 3477a86995
commit 02a1c24746

View File

@ -75,6 +75,11 @@ public class CraftWorld implements World {
return world.A.a(chunk.getX(), chunk.getZ());
}
public void loadChunk(Chunk chunk) {
world.A.d(chunk.getX(), chunk.getZ());
}
public Block updateBlock(int x, int y, int z) {
BlockCoordinate loc = new BlockCoordinate(x, y, z);
CraftBlock block = (CraftBlock)blockCache.get(loc);