From 5e2eecd55089ec8bbb4eeda8354566d0fb665504 Mon Sep 17 00:00:00 2001 From: okamosy Date: Sat, 20 Aug 2011 21:23:44 +0100 Subject: added charge command fixed formatting --- .../earth2me/essentials/commands/Commandrepair.java | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java b/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java index a388f92d2..e98deeab7 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java @@ -45,22 +45,23 @@ public class Commandrepair extends EssentialsCommand } String itemName = item.getType().toString().toLowerCase().replace('_', ' '); + charge(user); user.sendMessage(Util.format("repair", itemName)); } else if (args[0].equalsIgnoreCase("all")) { StringBuilder itemList = new StringBuilder(); itemList.append(repairItems(user.getInventory().getContents())); - + String armor = repairItems(user.getInventory().getArmorContents()); - - if(armor.length() > 0) + + if (armor.length() > 0) { - if(itemList.length() > 0) + if (itemList.length() > 0) { itemList.append(", "); } - + itemList.append(armor); } @@ -70,6 +71,7 @@ public class Commandrepair extends EssentialsCommand } else { + charge(user); user.sendMessage(Util.format("repair", itemList.toString())); } @@ -88,15 +90,15 @@ public class Commandrepair extends EssentialsCommand { throw new Exception(Util.i18n("repairInvalidType")); } - + if (item.getDurability() == 0) { throw new Exception(Util.i18n("repairAlreadyFixed")); } - + item.setDurability((short)0); } - + private String repairItems(ItemStack[] items) { StringBuilder itemList = new StringBuilder(); -- cgit v1.2.3