diff --git a/pom.xml b/pom.xml
index 49a539df3..7eb68d019 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,7 +8,7 @@
UTF-8
PlotSquared
- 2.12.15
+ 2.12.16
PlotSquared
jar
diff --git a/src/main/java/com/intellectualcrafters/plot/commands/Trim.java b/src/main/java/com/intellectualcrafters/plot/commands/Trim.java
index 5ea3d5b3d..b606d9121 100644
--- a/src/main/java/com/intellectualcrafters/plot/commands/Trim.java
+++ b/src/main/java/com/intellectualcrafters/plot/commands/Trim.java
@@ -137,12 +137,9 @@ public class Trim extends SubCommand {
int ccx2 = (pos2.getX() >> 9);
int ccz2 = (pos2.getZ() >> 9);
- System.out.print(pos1);
-
for(int x = ccx1; x <= ccx2; x++) {
for(int z = ccz1; z <= ccz2; z++) {
chunks.remove(new ChunkLoc(x, z));
- System.out.print(x + "," + z);
}
}
}
diff --git a/src/main/java/com/intellectualcrafters/plot/util/bukkit/BukkitChunkManager.java b/src/main/java/com/intellectualcrafters/plot/util/bukkit/BukkitChunkManager.java
index f7679c97f..25f07b65b 100644
--- a/src/main/java/com/intellectualcrafters/plot/util/bukkit/BukkitChunkManager.java
+++ b/src/main/java/com/intellectualcrafters/plot/util/bukkit/BukkitChunkManager.java
@@ -378,7 +378,6 @@ public class BukkitChunkManager extends ChunkManager {
CURRENT_PLOT_CLEAR = null;
Chunk chunkObj = worldObj.getChunkAt(x, z);
if (!chunkObj.load(false)) {
- System.out.print("FAILED TO LOAD CHUNK!!!: " + x + "," + z);
continue;
}
CURRENT_PLOT_CLEAR = new RegionWrapper(pos1.getX(), pos2.getX(), pos1.getZ(), pos2.getZ());
@@ -446,13 +445,9 @@ public class BukkitChunkManager extends ChunkManager {
saveRegion(worldObj, xxb , xxb2, zzb, zzb2); //
}
if (checkX2 && checkZ1) {
- System.out.print("CX2 && CZ1");
- System.out.print(xxt2 +',' + xxt + " | " + zzb + "," + zzb2);
saveRegion(worldObj, xxt2 , xxt, zzb, zzb2); // ?
}
if (checkX1 && checkZ2) {
- System.out.print("CX1 && CZ2");
- System.out.print(xxb +',' + xxb2 + " | " + zzt2 + "," + zzt);
saveRegion(worldObj, xxb , xxb2, zzt2, zzt); // ?
}
if (checkX2 && checkZ2) {