[Fix] Allow console to afk others

This commit is contained in:
Necrodoom 2013-03-25 15:09:09 +02:00 committed by KHobbits
parent 22efa3e000
commit 8604debc4e
1 changed files with 16 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package com.earth2me.essentials.commands;
import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.User;
import org.bukkit.command.CommandSender;
import org.bukkit.Server;
@ -25,6 +26,20 @@ public class Commandafk extends EssentialsCommand
toggleAfk(user);
}
}
@Override
public void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
{
if (args.length > 0)
{
User afkUser = getPlayer(server, args, 0, true, false);
toggleAfk(afkUser);
}
else
{
throw new NotEnoughArgumentsException();
}
}
private void toggleAfk(User user)
{
@ -53,3 +68,4 @@ public class Commandafk extends EssentialsCommand
}
}
}