1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-02-25 00:42:48 +01:00

Adding console override to sudo chat, changing say to c:

This commit is contained in:
Chris Ward 2012-10-02 03:30:13 +10:00
parent 9a1920a8df
commit ccd226f685

View File

@ -27,13 +27,13 @@ public class Commandsudo extends EssentialsCommand
}
final User user = getPlayer(server, args, 0, false);
if(args[1].equalsIgnoreCase("say"))
if(args[1].toLowerCase().startsWith("c:"))
{
if (user.isAuthorized("essentials.sudo.exempt"))
if (user.isAuthorized("essentials.sudo.exempt") && sender instanceof Player)
{
throw new Exception(_("sudoExempt"));
}
user.chat(getFinalArg(args, 2));
user.chat(getFinalArg(args, 1).substring(2));
return;
}
final String command = args[1];