Removed useless removal checks.

This commit is contained in:
GJ 2012-02-24 12:14:35 -05:00
parent 1cd7181d26
commit b98120192a

View File

@ -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++;