- Fixed: FCajunMaster::End() was missing a bot check.

This commit is contained in:
ChillyDoom 2014-12-24 19:41:49 +00:00
parent 23009bddb5
commit 7d628a8c03

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;