diff --git a/Commands/basecommands.cs b/Commands/basecommands.cs index e8e6aa8..89adf98 100644 --- a/Commands/basecommands.cs +++ b/Commands/basecommands.cs @@ -213,12 +213,12 @@ namespace CS2_SimpleAdmin { if (_database == null) return; - ReloadAdmins(); + ReloadAdmins(caller); command.ReplyToCommand("Reloaded sql admins"); } - public void ReloadAdmins() + public void ReloadAdmins(CCSPlayerController? caller) { if (_database == null) return; @@ -473,13 +473,6 @@ namespace CS2_SimpleAdmin _command = $"ds_workshop_changelevel {map.Replace("ws:", "")}"; } - //if (_discordWebhookClientLog != null && _localizer != null) - //{ - // string communityUrl = caller != null ? "<" + new SteamID(caller.SteamID).ToCommunityUrl().ToString() + ">" : ""; - // string commandName = command?.GetCommandString ?? "css_changemap"; - // _discordWebhookClientLog.SendMessageAsync(Helper.GenerateMessageDiscord(_localizer["sa_discord_log_command", $"[{callerName}]({communityUrl})", commandName])); - //} - AddTimer(3.0f, () => { Server.ExecuteCommand(_command); @@ -565,15 +558,6 @@ namespace CS2_SimpleAdmin } } - //if (_discordWebhookClientLog != null && _localizer != null) - //{ - // string communityUrl = caller != null ? "<" + new SteamID(caller.SteamID).ToCommunityUrl().ToString() + ">" : ""; - // string commandName = command?.GetCommandString ?? "css_changewsmap"; - // _discordWebhookClientLog.SendMessageAsync(Helper.GenerateMessageDiscord(_localizer["sa_discord_log_command", $"[{callerName}]({communityUrl})", commandName])); - //} - //if (command is not null) - // Helper.LogCommand(caller, command); - AddTimer(3.0f, () => { Server.ExecuteCommand(_command); diff --git a/Menus/ManageAdminsMenu.cs b/Menus/ManageAdminsMenu.cs index c7cfbff..7f7b6fa 100644 --- a/Menus/ManageAdminsMenu.cs +++ b/Menus/ManageAdminsMenu.cs @@ -77,9 +77,9 @@ namespace CS2_SimpleAdmin.Menus CS2_SimpleAdmin.Instance.RemoveAdmin(admin, player.SteamID.ToString()); } - private static void ReloadAdmins() + private static void ReloadAdmins(CCSPlayerController admin) { - CS2_SimpleAdmin.Instance.ReloadAdmins(); + CS2_SimpleAdmin.Instance.ReloadAdmins(admin); } } } \ No newline at end of file