1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-18 20:41:37 +02:00

[Fix] Allow console to afk others

This commit is contained in:
Necrodoom
2013-03-25 15:09:09 +02:00
committed by KHobbits
parent 7e6275fa99
commit dbf9b54018

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
}
}
}