Removed extra durability loss from Leaf Blower

This commit is contained in:
bm01 2013-01-19 20:47:15 +01:00
parent 0545ed434d
commit e7ceef479e
2 changed files with 1 additions and 4 deletions

View File

@ -9,6 +9,7 @@ Key:
Version 1.3.14-dev Version 1.3.14-dev
+ Added new Hylian Luck skill to Herbalism. + Added new Hylian Luck skill to Herbalism.
- Removed extra durability loss from Leaf Blower
Version 1.3.13 Version 1.3.13
+ Added task & command to prune old and powerless users from the SQL database. + Added task & command to prune old and powerless users from the SQL database.

View File

@ -491,10 +491,6 @@ public class WoodCutting {
FakePlayerAnimationEvent armswing = new FakePlayerAnimationEvent(player); FakePlayerAnimationEvent armswing = new FakePlayerAnimationEvent(player);
mcMMO.p.getServer().getPluginManager().callEvent(armswing); mcMMO.p.getServer().getPluginManager().callEvent(armswing);
if (Config.getInstance().getWoodcuttingRequiresTool()) {
Skills.abilityDurabilityLoss(player.getItemInHand(), Misc.toolDurabilityLoss);
}
if (mcMMO.spoutEnabled) { if (mcMMO.spoutEnabled) {
SpoutSounds.playSoundForPlayer(SoundEffect.POP, player, block.getLocation()); SpoutSounds.playSoundForPlayer(SoundEffect.POP, player, block.getLocation());
} }