recover from converter issue FIXES BUKKIT-890

This commit is contained in:
Tahg 2012-03-02 20:57:23 -05:00
parent ec35500c63
commit 2d5263bfe5

View File

@ -242,7 +242,7 @@ public class Chunk {
}
private void h(int i, int j, int k) {
int l = this.heightMap[k << 4 | i];
int l = this.heightMap[k << 4 | i] & 0xFF; // CraftBukkit
int i1 = l;
if (j > l) {