Remove automatic loss in GP that punishes you for frontrunning

This commit is contained in:
GenericHeroGuy 2025-09-03 21:56:46 +02:00
parent 0d7420f7d4
commit d7f8aa37e8

View file

@ -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)
{