mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Fixed: FCajunMaster::End() was missing a bot check.
This commit is contained in:
parent
23009bddb5
commit
7d628a8c03
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue