mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-25 10:14:43 +02:00
Fixed bug where trying to activate a Chimaera Wing would require one item too much
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user