woops, the check was accidentially inverted

This commit is contained in:
toasterbabe 2017-07-04 14:58:58 +01:00
parent 014c1d8f03
commit 0bf676498a

View file

@ -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++;
}