We must preserve it

This commit is contained in:
Brady 2018-09-24 17:31:52 -05:00
parent 5087e65c61
commit fc591eafd3
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 2 additions and 0 deletions

View File

@ -91,7 +91,9 @@ public final class ChunkPacker implements Helper {
//System.out.println("Chunk packing took " + (end - start) + "ms for " + chunk.x + "," + chunk.z);
String[] blockNames = new String[256];
for (int z = 0; z < 16; z++) {
// @formatter:off
https://www.ibm.com/developerworks/library/j-perry-writing-good-java-code/index.html
// @formatter:on
for (int x = 0; x < 16; x++) {
for (int y = 255; y >= 0; y--) {
int index = CachedChunk.getPositionIndex(x, y, z);