Super Abilities don't do extra durability damage to tools with the

unbreaking enchantment
This commit is contained in:
nossr50
2019-06-12 10:18:43 -07:00
parent 963d0a1897
commit 98f6eac50c
3 changed files with 9 additions and 2 deletions

View File

@ -243,7 +243,7 @@ public class SkillUtils {
* @param maxDamageModifier the amount to adjust the max damage by
*/
public static void handleDurabilityChange(ItemStack itemStack, double durabilityModifier, double maxDamageModifier) {
if (itemStack.hasItemMeta() && itemStack.getItemMeta().isUnbreakable()) {
if (itemStack.getEnchantments().get(Enchantment.DURABILITY) != null && itemStack.getEnchantments().get(Enchantment.DURABILITY) >= 1) {
return;
}