Fixed missing semi-colon in sdktools_stocks.inc (bug 3376).

This commit is contained in:
David Anderson 2008-10-31 08:38:44 -05:00
parent c25017e1a4
commit b3b972caf7

View File

@ -52,7 +52,7 @@ stock FindTeamByName(const String:name[])
new name_len = strlen(name);
new num_teams = GetTeamCount();
decl String:team_name[32];
new found_team = -1
new found_team = -1;
for (new i = 0; i < num_teams; i++)
{