From 8d91ff1e1c79f8dbcd1d1b832f987d09083d2a76 Mon Sep 17 00:00:00 2001 From: Sally Cochenour Date: Sun, 22 Mar 2020 16:13:41 -0400 Subject: [PATCH] No time limit in capsules --- src/p_inter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_inter.c b/src/p_inter.c index 3e182bccc..e83315a12 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -1786,7 +1786,7 @@ void P_CheckTimeLimit(void) if (!(multiplayer || netgame)) return; - if (G_RaceGametype()) + if (G_RaceGametype() || battlecapsules) return; if (leveltime < (timelimitintics + starttime))