1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-09 16:17:37 +02:00

Force repair inventory refresh.

This commit is contained in:
KHobbits
2013-06-27 02:12:07 +01:00
parent 3e747fd5a5
commit 9e11a4a381

View File

@@ -61,7 +61,7 @@ public class Commandrepair extends EssentialsCommand
repairItem(item);
charge.charge(user);
user.updateInventory();
user.sendMessage(_("repair", itemName.replace('_', ' ')));
}
@@ -75,6 +75,7 @@ public class Commandrepair extends EssentialsCommand
repairItems(user.getInventory().getArmorContents(), user, repaired);
}
user.updateInventory();
if (repaired.isEmpty())
{
throw new Exception(_("repairNone"));