Fix importing very old updated worlds

This commit is contained in:
mcrcortex
2025-03-25 01:04:27 +10:00
parent 33f5772ecd
commit f6eefdb336

View File

@@ -396,7 +396,8 @@ public class WorldImporter implements IDataImporter {
}
//Dont process non full chunk sections
if (ChunkStatus.byId(chunk.getString("Status")) != ChunkStatus.FULL) {
var status = ChunkStatus.byId(chunk.getString("Status"));
if (status != ChunkStatus.FULL && status != ChunkStatus.EMPTY) {//We also import empty since they are from data upgrade
this.totalChunks.decrementAndGet();
return;
}