Fix chunk section Y

This commit is contained in:
Jesse Boyd 2019-04-15 20:26:41 +10:00
parent 69e2ce6165
commit 7c54f16d43
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -437,7 +437,7 @@ public class BukkitChunk_1_13 extends IntFaweChunk<Chunk, BukkitQueue_1_13> {
// getParent().setCount(0, count - this.getAir(j), section);
continue;
} else {
section = sections[j] = getParent().newChunkSection(j << 4, flag, array);
section = sections[j] = getParent().newChunkSection(j, flag, array);
// getParent().setCount(0, count - this.getAir(j), section);
continue;
}
@ -451,7 +451,7 @@ public class BukkitChunk_1_13 extends IntFaweChunk<Chunk, BukkitQueue_1_13> {
// getParent().setCount(0, count - this.getAir(j), section);
continue;
} else {
section = sections[j] = getParent().newChunkSection(j << 4, flag, array);
section = sections[j] = getParent().newChunkSection(j, flag, array);
// getParent().setCount(0, count - this.getAir(j), section);
continue;
}