this.bot_config_loaded = true;
- // this is really only a default, TeamBalance_JoinBestTeam is called later
setcolor(this, stof(bot_shirt) * 16 + stof(bot_pants));
+ this.team = -1; // undo team change by setcolor
+ // save clientcolors now because they may be overriden when joining a team
this.bot_preferredcolors = this.clientcolors;
string prefix = (autocvar_g_campaign ? "" : autocvar_bot_prefix);
bot_clientconnect(this);
+ this.team = -1;
Player_DetermineForcedTeam(this);
TRANSMUTE(Observer, this);
if(teamplay)
this.team = (clr & 15) + 1;
else
- this.team = 0;
+ this.team = -1;
#else
+ // sets clientcolors and team (even in FFA games)
+ // and sends notification to all clients
builtin_setcolor(this, clr);
#endif
}
{
int new_team = Team_IndexToTeam(index);
if (player.team == new_team)
- {
- if (new_team != -1)
- {
- // This is important when players join the game and one of their
- // color matches the team color while other doesn't. For example
- // [BOT]Lion: color 0 4.
- SetPlayerColors(player, new_team - 1);
- }
return true;
- }
+
int old_index = Team_TeamToIndex(player.team);
if (MUTATOR_CALLHOOK(Player_ChangeTeam, player, old_index, index) == true)
{
entity player, bool use_score);
/// \brief Called when the player changes color with the "color" command.
-/// Note that the "color" command is always called early on player connection
+/// \note the "color" command is always called early on player connection
/// \param[in,out] player Player that requested a new color.
/// \param[in] new_color Requested color.
void SV_ChangeTeam(entity player, int new_color);