mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 04:36:44 +00:00
38 lines
1.1 KiB
Java
38 lines
1.1 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
import com.earth2me.essentials.User;
|
|
import com.earth2me.essentials.Util;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
|
|
public class Commandbalance extends EssentialsCommand
|
|
{
|
|
public Commandbalance()
|
|
{
|
|
super("balance");
|
|
}
|
|
|
|
@Override
|
|
protected void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
if (args.length < 1)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
sender.sendMessage(_("balance", Util.displayCurrency(getPlayer(server, args, 0, true, true).getMoney(), ess)));
|
|
}
|
|
|
|
@Override
|
|
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
//TODO: Remove 'other' perm
|
|
final double bal = (args.length < 1
|
|
|| !(user.isAuthorized("essentials.balance.others")
|
|
|| user.isAuthorized("essentials.balance.other"))
|
|
? user
|
|
: getPlayer(server, args, 0, true, true)).getMoney();
|
|
user.sendMessage(_("balance", Util.displayCurrency(bal, ess)));
|
|
}
|
|
}
|