summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorokamosy <okamosy@gmail.com>2011-08-20 21:23:44 +0100
committerokamosy <okamosy@gmail.com>2011-08-20 21:23:44 +0100
commit5e2eecd55089ec8bbb4eeda8354566d0fb665504 (patch)
treef683dc20040f7980847f560b4fe99b111bc3751d
parent5b19f4408ef8383b2bd40afb49a64b6f0892e4b7 (diff)
downloadEssentials-5e2eecd55089ec8bbb4eeda8354566d0fb665504.tar
Essentials-5e2eecd55089ec8bbb4eeda8354566d0fb665504.tar.gz
Essentials-5e2eecd55089ec8bbb4eeda8354566d0fb665504.tar.lz
Essentials-5e2eecd55089ec8bbb4eeda8354566d0fb665504.tar.xz
Essentials-5e2eecd55089ec8bbb4eeda8354566d0fb665504.zip
added charge command
fixed formatting
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandrepair.java18
1 files 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();