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

@ -29,6 +29,7 @@ Version 1.4.08-dev
= Fixed bug where `/addlevels all` and `/skillreset all` didn't work
= Fixed bug which made it possible to gain XP by taming the same horse multiple times, if a player "untamed" that horse
= Fixed bug where the /ptp request expiration time was checked wrongly - preventing players from using the command
= Fixed bug where Hylian Luck was broken
! Updated localization files
! Changed the appearance of /mcmmo commands
! Changed AxesCritical to CriticalHit in config file

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