From d7f8aa37e88fbebe04a0d6547d545a58111df06e Mon Sep 17 00:00:00 2001 From: GenericHeroGuy Date: Wed, 3 Sep 2025 21:56:46 +0200 Subject: [PATCH] Remove automatic loss in GP that punishes you for frontrunning --- src/g_game.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/g_game.c b/src/g_game.c index e1d972089..56a8729e9 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -3212,7 +3212,7 @@ void G_BeginLevelExit(void) { g_exit.losing = false; // never force a retry } - else if (bossinfo.boss == true) + else { UINT8 i; @@ -3228,14 +3228,6 @@ void G_BeginLevelExit(void) } } } - else if (grandprixinfo.gp == true && grandprixinfo.eventmode == GPEVENT_NONE) - { - g_exit.losing = (grandprixinfo.wonround != true); - } - else if (grandprixinfo.gp == true && grandprixinfo.eventmode == GPEVENT_NONE) - { - g_exit.losing = (grandprixinfo.wonround != true); - } if (g_exit.losing) {