mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-30 07:41:22 +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
|
@ -177,9 +177,12 @@ void FCajunMaster::End ()
|
||||||
if (deathmatch)
|
if (deathmatch)
|
||||||
{
|
{
|
||||||
for (i = 0; i < MAXPLAYERS; i++)
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
|
{
|
||||||
|
if (players[i].Bot != NULL)
|
||||||
{
|
{
|
||||||
getspawned.Push(players[i].userinfo.GetName());
|
getspawned.Push(players[i].userinfo.GetName());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
wanted_botnum = botnum;
|
wanted_botnum = botnum;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue