Make gcmd not work on admins

This commit is contained in:
Elmon11 2020-12-28 00:04:57 +01:00 committed by GitHub
parent 210b0f8b43
commit 402a6be5ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,6 +32,12 @@ public class Command_gcmd extends FreedomCommand
{
return true;
}
if (plugin.al.isAdmin(player))
{
msg(ChatColor.RED + "You can not use gcmd on admins");
return true;
}
try
{
@ -52,4 +58,4 @@ public class Command_gcmd extends FreedomCommand
return true;
}
}
}