View Single Post
psychonic

BAFFLED
Join Date: May 2008
Old 02-10-2010 , 10:22   Re: SourceMod 1.3.1 Released! Also, Six Years.
#9

Quote:
Originally Posted by nonick View Post
Is:
Code:
    new clients[maxClients];
    new total = 0;
    
    for (new i=1; i<=MaxClients; i++)
Need change to
Code:
    new clients[MaxClients];
    new total = 0;
    
    for (new i=1; i<=MaxClients; i++)
This is correct. I missed that line when updating the base plugins/incs and failed to include <sdktools> when testing the new files D:
psychonic is offline