From d79d32dac157bf239337c006e892a222eefcaca4 Mon Sep 17 00:00:00 2001 From: boy0001 Date: Fri, 21 Nov 2014 14:35:36 +1100 Subject: [PATCH] . --- .../java/com/intellectualcrafters/plot/util/SendChunk.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SendChunk.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SendChunk.java index eda35422c..e3755d813 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SendChunk.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SendChunk.java @@ -60,16 +60,10 @@ public class SendChunk { diffx = Math.abs(x - (chunk.getX() << 4)); diffz = Math.abs(z - (chunk.getZ() << 4)); if (diffx <= view && diffz <= view) { - System.out.print("PLAYER "); Object pair = ChunkCoordIntPairCon.create(chunk.getX(), chunk.getZ()); Object pq = chunkCoordIntPairQueue.of(ep).get(); ((List) pq).add(pair); } - else { - System.out.print("NOT P "+diffx+ " | "+diffz+" | "+view); - System.out.print("2 "+x+ " | "+z+" | "); - System.out.print("3 "+(chunk.getX() << 4)+ " | "+(chunk.getZ() << 4)+" | "); - } } } }