Fixed getChunkAt and usage.

This commit is contained in:
Erik Broes 2011-01-18 12:37:01 +01:00
parent 3143e503fe
commit 90c52739c4
2 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ public class CraftWorld implements World {
}
public Chunk getChunkAt(Block block) {
return getChunkAt(block.getX() << 4, block.getZ() << 4);
return getChunkAt(block.getX() >> 4, block.getZ() >> 4);
}
public boolean isChunkLoaded(Chunk chunk) {

View File

@ -30,7 +30,7 @@ public class CraftBlock implements Block {
this.type = type;
this.data = data;
this.light = (byte)world.getHandle().j(x, y, z);
this.chunk = (CraftChunk)world.getChunkAt(x << 4, z << 4);
this.chunk = (CraftChunk)world.getChunkAt(x >> 4, z >> 4);
}
protected CraftBlock(final CraftWorld world, final int x, final int y,
@ -42,7 +42,7 @@ public class CraftBlock implements Block {
this.type = type;
this.data = data;
this.light = light;
this.chunk = (CraftChunk)world.getChunkAt(x << 4, z << 4);
this.chunk = (CraftChunk)world.getChunkAt(x >> 4, z >> 4);
}
/**