mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 23:42:11 +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…
Reference in a new issue