From dfacb14ce02eae587f2f46ff158d9e0b0c29947e Mon Sep 17 00:00:00 2001 From: zaCade Date: Fri, 27 Jan 2023 16:22:48 +0100 Subject: [PATCH] [SB++] Dont save BaseComm mutes/gags. --- Sourcebans++/scripting/sbpp_comms.sp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sourcebans++/scripting/sbpp_comms.sp b/Sourcebans++/scripting/sbpp_comms.sp index 57f5e3e9..59458673 100644 --- a/Sourcebans++/scripting/sbpp_comms.sp +++ b/Sourcebans++/scripting/sbpp_comms.sp @@ -345,7 +345,7 @@ public BaseComm_OnClientMute(client, bool:muteState) if (g_MuteType[client] == bNot) { MarkClientAsMuted(client, _, _, _, _, _, "Muted through BaseComm natives"); - SavePunishment(_, client, TYPE_MUTE, _, "Muted through BaseComm natives"); + //SavePunishment(_, client, TYPE_MUTE, _, "Muted through BaseComm natives"); } } else @@ -367,7 +367,7 @@ public BaseComm_OnClientGag(client, bool:gagState) if (g_GagType[client] == bNot) { MarkClientAsGagged(client, _, _, _, _, _, "Gagged through BaseComm natives"); - SavePunishment(_, client, TYPE_GAG, _, "Gagged through BaseComm natives"); + //SavePunishment(_, client, TYPE_GAG, _, "Gagged through BaseComm natives"); } } else