diff options
Diffstat (limited to 'src/main/java/net/minecraft/server/Chunk.java')
-rw-r--r-- | src/main/java/net/minecraft/server/Chunk.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java index cf869736..3030f765 100644 --- a/src/main/java/net/minecraft/server/Chunk.java +++ b/src/main/java/net/minecraft/server/Chunk.java @@ -372,7 +372,6 @@ public class Chunk { flag = j >= k1; } - if (chunksection.a(i, j & 15, k) != l) return false; // CraftBukkit - remove next update chunksection.a(i, j & 15, k, l); int i2 = this.x * 16 + i; int j2 = this.z * 16 + k; @@ -385,6 +384,7 @@ public class Chunk { } } + if (chunksection.a(i, j & 15, k) != l) return false; // CraftBukkit - remove next update chunksection.b(i, j & 15, k, i1); if (flag) { this.initLighting(); |