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
|
@ -125,7 +125,13 @@ public class BlockListener implements Listener
|
||||||
|
|
||||||
else if (item.getEnchantments().containsKey(Enchantment.DURABILITY))
|
else if (item.getEnchantments().containsKey(Enchantment.DURABILITY))
|
||||||
{
|
{
|
||||||
addToDamage = 0;
|
double level = item.getEnchantmentLevel(Enchantment.DURABILITY);
|
||||||
|
double chance = 100 / (level + 1);
|
||||||
|
double rng = (Math.random() * 100) + 1;
|
||||||
|
if (rng >= chance)
|
||||||
|
{
|
||||||
|
addToDamage = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update durability
|
// Update durability
|
||||||
|
@ -207,7 +213,13 @@ public class BlockListener implements Listener
|
||||||
|
|
||||||
else if (item.getEnchantments().containsKey(Enchantment.DURABILITY))
|
else if (item.getEnchantments().containsKey(Enchantment.DURABILITY))
|
||||||
{
|
{
|
||||||
addToDamage = 0;
|
double level = item.getEnchantmentLevel(Enchantment.DURABILITY);
|
||||||
|
double chance = 100 / (level + 1);
|
||||||
|
double rng = (Math.random() * 100) + 1;
|
||||||
|
if (rng >= chance)
|
||||||
|
{
|
||||||
|
addToDamage = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update durability
|
// Update durability
|
||||||
|
|
Reference in a new issue