1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-07-13 02:54:43 +02:00

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
Changelog.txt
src/main/java/com/gmail/nossr50/listeners

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

@ -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);
}