more blocked names

This commit is contained in:
speed 2020-07-14 23:28:58 -04:00 committed by GitHub
parent 158ef0b62f
commit 7037dde3f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ public class CreateSubcommand extends Common implements CommandExecutor
public boolean onCommand(CommandSender sender, Command command, String label, String[] args)
{
List<String> BLACKLISTED_NAMES = Arrays.asList(
"admin", "owner", "moderator", "developer", "console", "dev", "staff", "mod", "sra", "tca", "sta", "sa");
"admin", "owner", "moderator", "developer", "console", "dev", "staff", "mod", "sra", "sta", "sa", "super admin", "telnet admin", "senior admin");
if (sender instanceof ConsoleCommandSender)
{
@ -82,4 +82,4 @@ public class CreateSubcommand extends Common implements CommandExecutor
Bukkit.broadcastMessage(GUtil.colorize(tl("%p%" + sender.getName() + " has created guild %p%&l" + name)));
return true;
}
}
}