summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-07-15 20:06:34 +0200
committersnowleo <schneeleo@gmail.com>2011-07-15 20:06:34 +0200
commitcecb9867d949dcfe208b58bdff0123581b13f137 (patch)
tree682e2cc0c037b00d810784f6b530e08a42d4dfe0
parent7e65038ae76d3ce427158b61bd0957a47cbfb635 (diff)
downloadEssentials-cecb9867d949dcfe208b58bdff0123581b13f137.tar
Essentials-cecb9867d949dcfe208b58bdff0123581b13f137.tar.gz
Essentials-cecb9867d949dcfe208b58bdff0123581b13f137.tar.lz
Essentials-cecb9867d949dcfe208b58bdff0123581b13f137.tar.xz
Essentials-cecb9867d949dcfe208b58bdff0123581b13f137.zip
/balance in console for offline users
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandbalance.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandbalance.java b/Essentials/src/com/earth2me/essentials/commands/Commandbalance.java
index 53845cb3b..ec525fab8 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandbalance.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandbalance.java
@@ -20,7 +20,7 @@ public class Commandbalance extends EssentialsCommand
{
throw new NotEnoughArgumentsException();
}
- sender.sendMessage(Util.format("balance", Util.formatCurrency(getPlayer(server, args, 0).getMoney())));
+ sender.sendMessage(Util.format("balance", Util.formatCurrency(getPlayer(server, args, 0, true).getMoney())));
}
@Override