[SB++] Dont save BaseComm mutes/gags.

This commit is contained in:
zaCade 2023-01-27 16:22:48 +01:00
parent e385e661d4
commit dfacb14ce0

View File

@ -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