From 325415b2b795b3c92702f3adf40308321abc621d Mon Sep 17 00:00:00 2001 From: hydrant Date: Sun, 8 Sep 2019 19:48:30 +0200 Subject: [PATCH] bugfix --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index 8fb7b55d..33cd5e80 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -2902,7 +2902,7 @@ namespace ReallifeGamemode.Server.Commands [Command("makeadmin", "~m~Benutzung: ~s~/makeadmin [Name] [Adminlevel]")] public void CmdAdminSetadmin(Client player, string name, int rank) { - if ((!player.GetUser()?.IsAdmin(AdminLevel.PROJEKTLEITUNG) ?? true) && (player.SocialClubName != "balboistderbeste")) + if ((!player.GetUser()?.IsAdmin(AdminLevel.PROJEKTLEITUNG) ?? true)) { ChatService.NotAuthorized(player); return;