Fixed bugs in IsClientPlayer. Made a zombie admin menu (zr_admin).

This commit is contained in:
richard
2008-10-11 17:17:51 +02:00
parent 18fecd7c3e
commit 5af48ead51
6 changed files with 455 additions and 8 deletions

View File

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