Remove automatic loss in GP that punishes you for frontrunning
This commit is contained in:
parent
0d7420f7d4
commit
d7f8aa37e8
1 changed files with 1 additions and 9 deletions
10
src/g_game.c
10
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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue