mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-21 18:32:08 +00:00
Account for exiting but non-finished players in G_EnoughPlayersFinished
This commit is contained in:
parent
23643e05c0
commit
74ae5819c4
1 changed files with 1 additions and 1 deletions
|
@ -2997,7 +2997,7 @@ boolean G_EnoughPlayersFinished(void)
|
|||
continue;
|
||||
|
||||
total++;
|
||||
if (players[i].pflags & PF_FINISHED)
|
||||
if ((players[i].pflags & PF_FINISHED) || players[i].exiting)
|
||||
exiting++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue