Triple Drop fix

This commit is contained in:
nossr50 2012-03-08 22:22:25 -08:00
parent 74b7aa5340
commit 9dfcbf1797
2 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,7 @@ Version 2.0.00-dev
+ Added offline user functionality to mmoedit
+ Added bookshelves to list of blocks that don't trigger abilities.
+ Added 'mcmmo.skills.repair.arcanebypass' permission node to bypass Arcane Repair and keep your enchantments
= Fixed Green Terra not awarding Triple Drops
= Fixed ClassCastException from Taming preventDamage checks
= Fixed issue with Blast Mining not seeing TNT for detonation due to snow
= Fixed issue with block interaction returning NPEs

View File

@ -112,6 +112,8 @@ public class mcBlockListener implements Listener {
//Wheat && Triple drops
if (PP.getGreenTerraMode() && Herbalism.canBeGreenTerra(block)) {
//Called twice for triple drop functionality
Herbalism.herbalismProcCheck(block, player, event, plugin);
Herbalism.herbalismProcCheck(block, player, event, plugin);
}