Fixed terrible Repairing and DecayCurse performance

This commit is contained in:
Auxilor 2020-12-30 13:32:10 +00:00
parent ec7c103081
commit bc707fb80d
2 changed files with 0 additions and 2 deletions

View File

@ -109,7 +109,6 @@ public class DecayCurse extends EcoEnchant implements EcoRunnable {
} }
DurabilityUtils.damageItemNoBreak(item, amount, player); DurabilityUtils.damageItemNoBreak(item, amount, player);
player.updateInventory();
} }
})); }));
} }

View File

@ -112,7 +112,6 @@ public class Repairing extends EcoEnchant implements EcoRunnable {
} }
DurabilityUtils.repairItem(item, amount * level); DurabilityUtils.repairItem(item, amount * level);
player.updateInventory();
} }
})); }));
} }