View Single Post
Re: Problem with fill server (for me atleast)
Old
  (#2)
Pierre-Marie Baty
Roi de France
 
Pierre-Marie Baty's Avatar
 
Status: Offline
Posts: 5,049
Join Date: Nov 2003
Location: 46°43'60N 0°43'0W 0.187A
Default Re: Problem with fill server (for me atleast) - 28-03-2004

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.



RACC home - Bots-United: beer, babies & bots (especially the latter)
"Learn to think by yourself, else others will do it for you."
  
Reply With Quote