implemented chance-checking to unbreaking tools with same % chance as for vanilla tools
This commit is contained in:
parent
b195479579
commit
dc988b7c80
1 changed files with 14 additions and 2 deletions
|
@ -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);
|
||||
|
|
Reference in a new issue