Fixed FindTeamByName using wrong case sensitivity (bug 3446, r=pred).

This commit is contained in:
David Anderson 2008-11-29 23:28:28 -06:00
parent 3cf30f5e62
commit 04354a809c

View File

@ -58,7 +58,7 @@ stock FindTeamByName(const String:name[])
{
GetTeamName(i, team_name, sizeof(team_name));
if (strncmp(team_name, name, name_len) == 0)
if (strncmp(team_name, name, name_len, false) == 0)
{
if (found_team >= 0)
{