Remove debug code

This commit is contained in:
Matthew Miller 2018-08-18 15:27:26 +10:00
parent 7f419618cc
commit f8585adc79
2 changed files with 4 additions and 5 deletions

View File

@ -243,7 +243,6 @@ public class BukkitPlayer extends AbstractPlayerActor {
@Override
public void sendFakeBlock(Vector pos, BlockStateHolder block) {
System.out.println("Setting " + (block == null ? "reset" : block.getAsString()) + " as " + pos.toString());
Location loc = new Location(player.getWorld(), pos.getX(), pos.getY(), pos.getZ());
if (block == null) {
player.sendBlockChange(loc, player.getWorld().getBlockAt(loc).getBlockData());

View File

@ -127,10 +127,10 @@ public class ServerCUIHandler {
posY -= y;
posZ -= z;
// if (Math.abs(posX) > 32 || Math.abs(posY) > 32 || Math.abs(posZ) > 32) {
// // Structure blocks have a limit
// return null;
// }
if (Math.abs(posX) > 32 || Math.abs(posY) > 32 || Math.abs(posZ) > 32) {
// Structure blocks have a limit
return null;
}
structureTag.put("name", new StringTag("worldedit:" + player.getName()));
structureTag.put("author", new StringTag(player.getName()));