mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-17 19:11:30 +00:00
woops, the check was accidentially inverted
This commit is contained in:
parent
014c1d8f03
commit
0bf676498a
1 changed files with 1 additions and 1 deletions
|
|
@ -9429,7 +9429,7 @@ void P_PlayerThink(player_t *player)
|
|||
continue;
|
||||
|
||||
total++;
|
||||
if (!players[i].exiting || players[i].exiting > 3)
|
||||
if (players[i].exiting && players[i].exiting < 4)
|
||||
exiting++;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue