From 5b027ff2feec68328c954ff59abc4dd671dd1970 Mon Sep 17 00:00:00 2001 From: toaster Date: Sat, 31 Dec 2022 19:00:52 +0000 Subject: [PATCH] Instead of preventing lives for GTR_CAPSULES, prevent them for it being GPEVENT_BONUS --- src/g_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index d87be770c..c2de77e36 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -3227,7 +3227,7 @@ boolean G_GametypeUsesLives(void) return false; if ((grandprixinfo.gp == true) // In Grand Prix - && !(gametyperules & GTR_CAPSULES)) // NOT in Break The Capsules + && grandprixinfo.eventmode != GPEVENT_BONUS) // NOT in bonus round { return true; }