Fixed bug in IsClientPlayer.
This commit is contained in:
		| @@ -193,7 +193,7 @@ bool:IntToBool(intval) | |||||||
|  |  | ||||||
| bool:IsClientPlayer(client) | bool:IsClientPlayer(client) | ||||||
| { | { | ||||||
|     if (client > 1 || client <= maxclients) |     if (client > 1 && client <= maxclients) | ||||||
|     { |     { | ||||||
|         return true; |         return true; | ||||||
|     } |     } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user