TF-EssentialsX/Essentials/src/com/earth2me/essentials/commands/Commandunban.java

29 lines
652 B
Java
Raw Normal View History

package com.earth2me.essentials.commands;
2011-07-15 21:58:03 +00:00
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
import org.bukkit.Server;
import org.bukkit.command.CommandSender;
public class Commandunban extends EssentialsCommand
{
public Commandunban()
{
super("unban");
}
@Override
public void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws Exception
{
if (args.length < 1)
{
throw new NotEnoughArgumentsException();
}
2011-07-15 21:58:03 +00:00
User u = getPlayer(server, args, 0, true);
ess.getBans().unbanByName(u.getName());
sender.sendMessage(Util.i18n("unbannedPlayer"));
}
}