فهرست منبع

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

TfT_02 12 سال پیش
والد
کامیت
c14f3777c0
2فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 1 0
      Changelog.txt
  2. 1 1
      src/main/java/com/gmail/nossr50/util/ChimaeraWing.java

+ 1 - 0
Changelog.txt

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

+ 1 - 1
src/main/java/com/gmail/nossr50/util/ChimaeraWing.java

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