From 387961d24299a769086dac6ada25d43e99cf974d Mon Sep 17 00:00:00 2001 From: Acrobot Date: Sat, 7 Dec 2013 18:30:26 +0100 Subject: [PATCH] WAT. NO. --- .../com/Acrobot/ChestShop/Listeners/Block/Break/SignBreak.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/Acrobot/ChestShop/Listeners/Block/Break/SignBreak.java b/src/main/java/com/Acrobot/ChestShop/Listeners/Block/Break/SignBreak.java index 206b9f1..63c4f46 100644 --- a/src/main/java/com/Acrobot/ChestShop/Listeners/Block/Break/SignBreak.java +++ b/src/main/java/com/Acrobot/ChestShop/Listeners/Block/Break/SignBreak.java @@ -78,7 +78,7 @@ public class SignBreak implements Listener { @EventHandler(ignoreCancelled = true, priority = EventPriority.MONITOR) public static void onBrokenSign(BlockBreakEvent event) { - if (BlockUtil.isSign(event.getBlock()) && !event.isCancelled()) { + if (ChestShopSign.isValid(event.getBlock()) && !event.isCancelled()) { sendShopDestroyedEvent((Sign) event.getBlock().getState(), event.getPlayer()); } }