Thanks for the information, yes there was a bug with my new team selection code, sorry for that
In the BotStartGame() function, the line
Code:
if ((pBot->bot_team > 1) || (pBot->bot_team > 2))
pBot->bot_team = 5;
should have been
Code:
if ((pBot->bot_team < 1) || (pBot->bot_team > 2))
pBot->bot_team = 5;
I code too fast
The bug is now fixed, and the fix will be included in the next release of the bot.