Updated from 1.2.2 to 1.2.3. This fixes BUKKIT-943

This commit is contained in:
Nathan Adams
2012-03-02 19:31:06 +00:00
parent cb669f72a0
commit a42e710bbc
6 changed files with 12 additions and 12 deletions

View File

@@ -554,7 +554,7 @@ public class Chunk {
}
public boolean d(int i, int j, int k) {
return j > this.heightMap[k << 4 | i];
return j >= this.heightMap[k << 4 | i];
}
public TileEntity e(int i, int j, int k) {