Fixed base plugins using GetMaxClients() instead of MaxClients (bug 3985, r=dvander).

This commit is contained in:
Nicholas Hastings
2010-02-08 20:14:52 -08:00
parent d484979fe8
commit 0af39de346
18 changed files with 35 additions and 70 deletions
+1 -2
View File
@@ -189,10 +189,9 @@ public Action:Command_Who(client, args)
}
/* List all players */
new maxClients = GetMaxClients();
decl String:flagstring[255];
for (new i=1; i<=maxClients; i++)
for (new i=1; i<=MaxClients; i++)
{
if (!IsClientInGame(i))
{