1
0
Fork 0

fixed durability reduction

This commit is contained in:
lightling 2019-09-16 19:24:52 -04:00
parent 587517832e
commit 0079ef4151

View file

@ -109,7 +109,7 @@ public class BlockListener implements Listener
// Used for determining durability loss // Used for determining durability loss
int addToDamage = 0; int addToDamage = 1;
// Do extra damage to durability if extra blocks were broken // Do extra damage to durability if extra blocks were broken
if (success && !item.getEnchantments().containsKey(Enchantment.DURABILITY)) if (success && !item.getEnchantments().containsKey(Enchantment.DURABILITY))
@ -186,7 +186,7 @@ public class BlockListener implements Listener
} }
// Used for determining durability loss // Used for determining durability loss
int addToDamage = 0; int addToDamage = 1;
// Do extra damage to durability if extra blocks were broken // Do extra damage to durability if extra blocks were broken
if (success && !item.getEnchantments().containsKey(Enchantment.DURABILITY)) if (success && !item.getEnchantments().containsKey(Enchantment.DURABILITY))
@ -194,7 +194,7 @@ public class BlockListener implements Listener
addToDamage = 2; addToDamage = 2;
// Diamond tools take less damage // Diamond tools take less damage
if (itemType == Material.DIAMOND_PICKAXE || itemType == Material.DIAMOND_SHOVEL) if (itemType == Material.DIAMOND_AXE)
{ {
addToDamage = 1; addToDamage = 1;
} }