mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-10-31 17:23:42 +01:00 
			
		
		
		
	Fixed bug where trying to activate a Chimaera Wing would require one item too much
This commit is contained in:
		| @@ -8,6 +8,7 @@ Key: | |||||||
|   - Removal |   - Removal | ||||||
|  |  | ||||||
| Version 1.4.04-dev | Version 1.4.04-dev | ||||||
|  |  = Fixed bug where trying to activate a Chimaera Wing would require one item too much | ||||||
|  |  | ||||||
| Version 1.4.03 | Version 1.4.03 | ||||||
|  + Added option to advanced.yml to determine the # of enchant levels used when buffing Super Breaker & Giga Drill Breaker |  + Added option to advanced.yml to determine the # of enchant levels used when buffing Super Breaker & Giga Drill Breaker | ||||||
|   | |||||||
| @@ -51,7 +51,7 @@ public final class ChimaeraWing { | |||||||
|                 return; |                 return; | ||||||
|             } |             } | ||||||
|  |  | ||||||
|             if (amount <= Config.getInstance().getChimaeraUseCost()) { |             if (amount < Config.getInstance().getChimaeraUseCost()) { | ||||||
|                 player.sendMessage(LocaleLoader.getString("Skills.NeedMore", "Chimaera Wings")); //TODO Locale! |                 player.sendMessage(LocaleLoader.getString("Skills.NeedMore", "Chimaera Wings")); //TODO Locale! | ||||||
|                 return; |                 return; | ||||||
|             } |             } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 TfT_02
					TfT_02