Fixed bug where trying to activate a Chimaera Wing would require one item too much

This commit is contained in:
TfT_02 2013-03-16 11:42:38 +01:00
parent 2838a52e0c
commit c14f3777c0
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Key:
- Removal
Version 1.4.04-dev
= Fixed bug where trying to activate a Chimaera Wing would require one item too much
Version 1.4.03
+ Added option to advanced.yml to determine the # of enchant levels used when buffing Super Breaker & Giga Drill Breaker

View File

@ -51,7 +51,7 @@ public final class ChimaeraWing {
return;
}
if (amount <= Config.getInstance().getChimaeraUseCost()) {
if (amount < Config.getInstance().getChimaeraUseCost()) {
player.sendMessage(LocaleLoader.getString("Skills.NeedMore", "Chimaera Wings")); //TODO Locale!
return;
}