1
0
Fork 0

implemented chance-checking to unbreaking tools with same % chance as for vanilla tools

This commit is contained in:
lightling 2019-09-17 16:35:16 -04:00
parent b195479579
commit dc988b7c80

View file

@ -124,9 +124,15 @@ public class BlockListener implements Listener
}
else if (item.getEnchantments().containsKey(Enchantment.DURABILITY))
{
double level = item.getEnchantmentLevel(Enchantment.DURABILITY);
double chance = 100 / (level + 1);
double rng = (Math.random() * 100) + 1;
if (rng >= chance)
{
addToDamage = 0;
}
}
// Update durability
dMeta.setDamage(currDur + addToDamage);
@ -206,9 +212,15 @@ public class BlockListener implements Listener
}
else if (item.getEnchantments().containsKey(Enchantment.DURABILITY))
{
double level = item.getEnchantmentLevel(Enchantment.DURABILITY);
double chance = 100 / (level + 1);
double rng = (Math.random() * 100) + 1;
if (rng >= chance)
{
addToDamage = 0;
}
}
// Update durability
dMeta.setDamage(currDur + addToDamage);