From b98120192a7e392f034ba553f3dda6996e21d994 Mon Sep 17 00:00:00 2001 From: GJ Date: Fri, 24 Feb 2012 12:14:35 -0500 Subject: [PATCH] Removed useless removal checks. --- src/main/java/com/gmail/nossr50/skills/WoodCutting.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/gmail/nossr50/skills/WoodCutting.java b/src/main/java/com/gmail/nossr50/skills/WoodCutting.java index e4b22b8fd..9b721a786 100644 --- a/src/main/java/com/gmail/nossr50/skills/WoodCutting.java +++ b/src/main/java/com/gmail/nossr50/skills/WoodCutting.java @@ -128,7 +128,6 @@ public class WoodCutting //Remove the block x.setData((byte) 0); x.setType(Material.AIR); - plugin.misc.blockWatchList.remove(x); //Drop the block m.mcDropItem(x.getLocation(), item); @@ -148,7 +147,6 @@ public class WoodCutting //Remove the block x.setData((byte) 0); x.setType(Material.AIR); - plugin.misc.blockWatchList.remove(x); //Damage the tool more if the Tree is larger durabilityLoss++;