Merge pull request #206 from ChillyDoom/BotFix

- Fixed: FCajunMaster::End() was missing a bot check.
This commit is contained in:
rheit 2014-12-24 15:57:50 -06:00
commit 087830263f

View file

@ -178,7 +178,10 @@ void FCajunMaster::End ()
{
for (i = 0; i < MAXPLAYERS; i++)
{
getspawned.Push(players[i].userinfo.GetName());
if (players[i].Bot != NULL)
{
getspawned.Push(players[i].userinfo.GetName());
}
}
wanted_botnum = botnum;