From cecb9867d949dcfe208b58bdff0123581b13f137 Mon Sep 17 00:00:00 2001 From: snowleo Date: Fri, 15 Jul 2011 20:06:34 +0200 Subject: [PATCH] /balance in console for offline users --- .../src/com/earth2me/essentials/commands/Commandbalance.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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