From b1af9439e0b4aa5262b1a70a903e6a075e2dc084 Mon Sep 17 00:00:00 2001 From: hydrant Date: Wed, 4 Sep 2019 19:06:45 +0200 Subject: [PATCH] FIX BALBOS FEHLER AAAAAAAAAHHHHHHH --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index 87a1117f..1ab56afd 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -132,13 +132,13 @@ namespace ReallifeGamemode.Server.Commands return; } - if (!UserHelper.dutyAdmins.Contains(player)) + if (!GlobalHelper.dutyAdmins.Contains(player)) { - UserHelper.dutyAdmins.Add(player); + GlobalHelper.dutyAdmins.Add(player); ChatService.Broadcast("~g~** " + player.Name + " hat sich zum Support angemeldet"); } else { - UserHelper.dutyAdmins.Remove(player); + GlobalHelper.dutyAdmins.Remove(player); ChatService.Broadcast("~r~** " + player.Name + " hat sich vom Support abgemeldet"); }