fix issue when someone dc with lennies hidden

This commit is contained in:
DoganGFL 2018-12-06 12:46:47 +01:00
parent ebd550190b
commit 5924862748

View File

@ -55,4 +55,9 @@ public Action HideLennies(int client, int args)
ReplyToCommand(client, "You unblocked Lennies"); ReplyToCommand(client, "You unblocked Lennies");
} }
return Plugin_Handled; return Plugin_Handled;
}
public void OnClientDisconnect(int client)
{
g_bHideLennies[client] = false;
} }