1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-06-22 00:41:25 +02:00

Merge pull request from matix931/patch-3

Update src/main/java/com/gmail/nossr50/skills/repair/Repair.java
This commit is contained in:
nossr50 2012-09-02 08:04:26 -07:00
commit 8181989e98

@ -114,7 +114,7 @@ public class Repair {
int enchantLevel = enchant.getValue();
if (configInstance.getArcaneForgingDowngradeEnabled() && enchantLevel > 1) {
if (random.nextInt(100) <= getDowngradeChance(rank)) {
if (random.nextInt(100) < getDowngradeChance(rank)) {
is.addEnchantment(enchantment, --enchantLevel);
downgraded = true;
}