diff --git a/src/main/java/me/cortex/voxy/client/importers/WorldImporter.java b/src/main/java/me/cortex/voxy/client/importers/WorldImporter.java index 305b4a21..a67ee8ad 100644 --- a/src/main/java/me/cortex/voxy/client/importers/WorldImporter.java +++ b/src/main/java/me/cortex/voxy/client/importers/WorldImporter.java @@ -258,10 +258,13 @@ public class WorldImporter { private void importChunkNBT(NbtCompound chunk) { if (!chunk.contains("Status")) { + //Its not real so decrement the chunk + this.totalChunks.decrementAndGet(); return; } //Dont process non full chunk sections if (ChunkStatus.byId(chunk.getString("Status")) != ChunkStatus.FULL) { + this.totalChunks.decrementAndGet(); return; } try {