Fixed bug in IsClientPlayer.

This commit is contained in:
richard 2008-10-11 13:29:22 +02:00
parent 4aff5dd122
commit 18fecd7c3e
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ bool:IntToBool(intval)
bool:IsClientPlayer(client)
{
if (client > 1 || client <= maxclients)
if (client > 1 && client <= maxclients)
{
return true;
}