From 0bf676498ae9799cef39c7e7467c4a310adbb888 Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Tue, 4 Jul 2017 14:58:58 +0100 Subject: [PATCH] woops, the check was accidentially inverted --- src/p_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_user.c b/src/p_user.c index 08c1a7724..a6795eadb 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -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++; }