mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Account for exiting but non-finished players in G_EnoughPlayersFinished
This commit is contained in:
parent
6531ab5423
commit
7977a344c7
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…
Add table
Reference in a new issue