Skip to content

Commit

Permalink
remove forgotten debug someone left
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Sep 15, 2017
1 parent 19d109f commit 4c9f49b
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -1246,8 +1246,6 @@ public String run(Attribute attribute, dObject object) {
if (obj.isInsideCuboid(new Location(obj.getWorld(), maxChunk.getX() * 16 + 15, minY, maxChunk.getZ() * 16 + 15))) {
chunks.add(maxChunk);
}
dB.log("min:" + minChunk.getX() + "," + minChunk.getZ());
dB.log("max:" + maxChunk.getX() + "," + maxChunk.getZ());
for (int x = minChunk.getX() + 1; x <= maxChunk.getX() - 1; x++) {
for (int z = minChunk.getZ() + 1; z <= maxChunk.getZ() - 1; z++) {
chunks.add(obj.getWorld().getChunkAt(x, z));
Expand Down Expand Up @@ -1275,8 +1273,6 @@ public String run(Attribute attribute, dObject object) {
for (LocationPair pair : ((dCuboid) object).pairs) {
Chunk minChunk = pair.low.getChunk();
Chunk maxChunk = pair.high.getChunk();
dB.log("min:" + minChunk.getX() + "," + minChunk.getZ());
dB.log("max:" + maxChunk.getX() + "," + maxChunk.getZ());
for (int x = minChunk.getX(); x <= maxChunk.getX(); x++) {
for (int z = minChunk.getZ(); z <= maxChunk.getZ(); z++) {
chunks.add(((dCuboid) object).getWorld().getChunkAt(x, z));
Expand Down

0 comments on commit 4c9f49b

Please sign in to comment.