Fixed bug where Hylian Luck was broken

Fixes #1771
This commit is contained in:
TfT_02
2014-01-13 14:18:16 +01:00
parent 97c95c1c49
commit 393d9ca74e
2 changed files with 2 additions and 1 deletions

View File

@ -232,7 +232,7 @@ public class HerbalismManager extends SkillManager {
Player player = getPlayer();
if (treasures.isEmpty() || EventUtils.simulateBlockBreak(blockState.getBlock(), player, false)) {
if (treasures.isEmpty() || !EventUtils.simulateBlockBreak(blockState.getBlock(), player, false)) {
return false;
}