mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-17 23:21:22 +00:00
Merge branch 'exitmove-erz2-fix' into 'master'
Account for exiting but non-finished players in G_EnoughPlayersFinished Closes #354 See merge request STJr/SRB2Internal!542
This commit is contained in:
commit
9cf7d60288
1 changed files with 1 additions and 1 deletions
|
@ -2997,7 +2997,7 @@ boolean G_EnoughPlayersFinished(void)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
total++;
|
total++;
|
||||||
if (players[i].pflags & PF_FINISHED)
|
if ((players[i].pflags & PF_FINISHED) || players[i].exiting)
|
||||||
exiting++;
|
exiting++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue