mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-03 20:26:05 +00:00
Patch over MapWarp not meshing with Time Attack
Prints a message saying your time wasn't recorded and you should try a different mode
This commit is contained in:
parent
fc3a0683ba
commit
55cbf07a28
1 changed files with 16 additions and 0 deletions
|
|
@ -60,6 +60,22 @@ void M_EndModeAttackRun(void)
|
|||
return;
|
||||
}
|
||||
|
||||
if (nextmapoverride != 0)
|
||||
{
|
||||
M_StartMessage(
|
||||
"Secret Exit",
|
||||
va(
|
||||
"No finish time was recorded.\n"
|
||||
"Secrets don't work in Record modes!\n"
|
||||
"Try again in %s.\n",
|
||||
(gametype == GT_RACE)
|
||||
? "Grand Prix or Match Race"
|
||||
: "Grand Prix"
|
||||
),
|
||||
NULL, MM_NOTHING, NULL, NULL
|
||||
);
|
||||
}
|
||||
|
||||
Command_ExitGame_f(); // Clear a bunch of state
|
||||
|
||||
if (!modeattacking)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue