Fixing index error.

This commit is contained in:
Glitchfinder
2012-11-05 20:14:23 -08:00
parent 00a5bc5cf3
commit 88ed14fe5c
2 changed files with 24 additions and 5 deletions

View File

@ -105,10 +105,13 @@ public class BlockStoreConversionZDirectory implements Runnable {
this.czPos = this.zPos + this.z;
for(this.y2 = (64 * this.y); this.y2 < (64 * this.y + 64); this.y2++) {
if(!this.manager.isTrue(this.cxPos, this.y2, this.czPos, this.world))
continue;
try {
if(!this.manager.isTrue(this.cxPos, this.y2, this.czPos, this.world))
continue;
this.newManager.setTrue(this.cxPos, this.y2, this.czPos, this.world);
this.newManager.setTrue(this.cxPos, this.y2, this.czPos, this.world);
}
catch(Exception e) {}
}
}
}