mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-25 02:04:44 +02:00
Fixed issue with repair event not returning the proper repair amount.
This commit is contained in:
@ -433,16 +433,16 @@ public class Repair {
|
||||
* @param enchantsLevel The level of the enchantments on the item
|
||||
*/
|
||||
public static void repairItem(Player player, ItemStack is) {
|
||||
short initialDurability = is.getDurability();
|
||||
|
||||
/* Handle the enchants */
|
||||
if (LoadProperties.mayLoseEnchants && !mcPermissions.getInstance().arcaneBypass(player)) {
|
||||
addEnchants(player, is);
|
||||
}
|
||||
|
||||
short repairAmount = getRepairAmount(is, player);
|
||||
is.setDurability(repairAmount);
|
||||
is.setDurability(getRepairAmount(is, player));
|
||||
|
||||
McMMOPlayerRepairEvent event = new McMMOPlayerRepairEvent(player, is, repairAmount);
|
||||
McMMOPlayerRepairEvent event = new McMMOPlayerRepairEvent(player, is, (short) (initialDurability - is.getDurability()));
|
||||
Bukkit.getPluginManager().callEvent(event);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user