diff --git a/bukkit/src/main/java/com/griefdefender/listener/BlockEventHandler.java b/bukkit/src/main/java/com/griefdefender/listener/BlockEventHandler.java index 80690e5..fad5da5 100644 --- a/bukkit/src/main/java/com/griefdefender/listener/BlockEventHandler.java +++ b/bukkit/src/main/java/com/griefdefender/listener/BlockEventHandler.java @@ -152,9 +152,6 @@ public void onBlockPistonExtend(BlockPistonExtendEvent event) { // Sticky pistons will attach to next block so we need to check it location = BlockUtil.getInstance().getBlockRelative(location, event.getDirection()); targetClaim = this.storage.getClaimAt(location, targetClaim); - if (targetClaim.isWilderness()) { - return; - } } if (handleBlockBreak(event, location, targetClaim, event.getBlock(), location.getBlock(), user, false)) {