From 8af5f1814352028342247f215002b8c7e0d73069 Mon Sep 17 00:00:00 2001 From: hydrant Date: Mon, 5 Apr 2021 16:48:05 +0200 Subject: [PATCH] fix tsupport --- 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 93ca01e5..551d092d 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -277,7 +277,7 @@ namespace ReallifeGamemode.Server.Commands public void CmdAdminTSupport(Player player) { User user = player.GetUser(); - if (user.IsAdmin(AdminLevel.SUPPORTER)) + if (!user.IsAdmin(AdminLevel.SUPPORTER)) { ChatService.NotAuthorized(player); return;