Removed temporary sysouts
This commit is contained in:
parent
808b50fb61
commit
dfb289fdd9
2 changed files with 4 additions and 2 deletions
|
@ -73,7 +73,8 @@ public class CreativeControlImportThread extends DatabaseMigrationThread {
|
|||
Cuboid c = new Cuboid();
|
||||
c.add(new Location(world, x, 0, z));
|
||||
c.add(new Location(world, x + CHUNK_SIZE, world.getMaxHeight(), z + CHUNK_SIZE));
|
||||
System.out.println("Fetching Cuboid: " + c.toString());
|
||||
if (mod.isDebug())
|
||||
mod.getLog().debug("Fetching Cuboid: " + c.toString());
|
||||
|
||||
for (BlockState bs : iterateAllIn(c)) {
|
||||
if (mode == Mode.UPDATE) {
|
||||
|
|
|
@ -103,7 +103,8 @@ public class DatabaseMigrationThread extends Thread implements IDebugLogHolder {
|
|||
Cuboid c = new Cuboid();
|
||||
c.add(new Location(world, x, 0, z));
|
||||
c.add(new Location(world, x + CHUNK_SIZE, world.getMaxHeight(), z + CHUNK_SIZE));
|
||||
System.out.println("Fetching Cuboid: " + c.toString());
|
||||
if (mod.isDebug())
|
||||
mod.getLog().debug("Fetching Cuboid: " + c.toString());
|
||||
|
||||
for (BlockState bs : sourceDB.iterateAllIn(c)) {
|
||||
if (mode == Mode.UPDATE) {
|
||||
|
|
Loading…
Reference in a new issue