mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix for the Y_FollowIntermission change hurting Record Attack
Should probably be ported to vanilla
This commit is contained in:
parent
d1f6584c6a
commit
2b92c1abfa
1 changed files with 7 additions and 1 deletions
|
|
@ -3552,7 +3552,13 @@ void G_AfterIntermission(void)
|
|||
HU_ClearCEcho();
|
||||
//G_NextLevel();
|
||||
|
||||
if (mapheaderinfo[gamemap-1]->cutscenenum && !modeattacking) // Start a custom cutscene.
|
||||
if (modeattacking) // End the run.
|
||||
{
|
||||
M_EndModeAttackRun();
|
||||
return;
|
||||
}
|
||||
|
||||
if (mapheaderinfo[gamemap-1]->cutscenenum) // Start a custom cutscene.
|
||||
F_StartCustomCutscene(mapheaderinfo[gamemap-1]->cutscenenum-1, false, false);
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue