SelfMute: Forgot the equal

tnx dogan
This commit is contained in:
Pan32 2020-09-30 14:56:33 +01:00
parent 3196094ae3
commit 6f8468fad7

View File

@ -129,7 +129,7 @@ public void OnLibraryRemoved(const char[] name) { OnLibrary(name, false); }
public void OnClientPutInServer(int client)
{
g_SpecialMutes[client] = MUTE_NONE;
for(int i = 1; i < MaxClients; i++)
for(int i = 1; i <= MaxClients; i++)
{
SetIgnored(client, i, false);
SetExempt(client, i, false);
@ -147,7 +147,7 @@ public void OnClientPutInServer(int client)
public void OnClientDisconnect(int client)
{
g_SpecialMutes[client] = MUTE_NONE;
for(int i = 1; i < MaxClients; i++)
for(int i = 1; i <= MaxClients; i++)
{
SetIgnored(client, i, false);
SetExempt(client, i, false);