Fixed FindTeamByName using wrong case sensitivity (bug 3446, r=pred).
This commit is contained in:
parent
3cf30f5e62
commit
04354a809c
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user