CS: Manually set SPECTATOR team index.

This commit is contained in:
Arkshine
2014-05-15 00:01:28 +02:00
parent 7e6812f64a
commit 0edb16150a
2 changed files with 20 additions and 0 deletions

View File

@@ -1761,8 +1761,14 @@ int MNF_SetPlayerTeamInfo(int player, int teamid, const char *teamname)
pPlayer->teamId = teamid;
if (teamname != NULL)
{
pPlayer->team.assign(teamname);
// Make sure team is registered, otherwise
// natives relying on team id will return wrong result.
g_teamsIds.registerTeam(teamname, teamid);
}
return 1;
}