Skip to content

Commit

Permalink
Merge pull request #37 from Zabaniya001/patch-2
Browse files Browse the repository at this point in the history
Removed some unnecessary checks
  • Loading branch information
B3none authored Dec 11, 2021
2 parents b66799c + a8f078b commit 95c8db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripting/retakes_instadefuse.sp
Original file line number Diff line number Diff line change
Expand Up @@ -338,5 +338,5 @@ stock bool HasAlivePlayer(int team)

stock bool IsValidClient(int client)
{
return client > 0 && client <= MaxClients && IsClientInGame(client) && IsClientConnected(client) && IsClientAuthorized(client) && !IsFakeClient(client);
return client > 0 && client <= MaxClients && IsClientInGame(client) && !IsFakeClient(client);
}

0 comments on commit 95c8db4

Please sign in to comment.