diff --git a/Changelog.txt b/Changelog.txt index 45908abf1..d7647a7a2 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -9,6 +9,7 @@ Key: Version 1.3.14-dev + Added new Hylian Luck skill to Herbalism. + - Removed extra durability loss from Leaf Blower Version 1.3.13 + Added task & command to prune old and powerless users from the SQL database. diff --git a/src/main/java/com/gmail/nossr50/skills/gathering/WoodCutting.java b/src/main/java/com/gmail/nossr50/skills/gathering/WoodCutting.java index 7677a5338..3de5fc63b 100644 --- a/src/main/java/com/gmail/nossr50/skills/gathering/WoodCutting.java +++ b/src/main/java/com/gmail/nossr50/skills/gathering/WoodCutting.java @@ -491,10 +491,6 @@ public class WoodCutting { FakePlayerAnimationEvent armswing = new FakePlayerAnimationEvent(player); mcMMO.p.getServer().getPluginManager().callEvent(armswing); - if (Config.getInstance().getWoodcuttingRequiresTool()) { - Skills.abilityDurabilityLoss(player.getItemInHand(), Misc.toolDurabilityLoss); - } - if (mcMMO.spoutEnabled) { SpoutSounds.playSoundForPlayer(SoundEffect.POP, player, block.getLocation()); }