mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
Merge branch 'record-attack-custom-exit-fix' into 'next'
Record attack custom exit fix This fixes the bug reported here: http://mb.srb2.org/showthread.php?t=42342 Record Attack now no longer allows the tally to be skipped, whether by custom exits or by Lua etc. See merge request !164
This commit is contained in:
commit
9b737d1165
1 changed files with 1 additions and 1 deletions
|
|
@ -2888,7 +2888,7 @@ static void G_DoCompleted(void)
|
||||||
if (nextmap < NUMMAPS && !mapheaderinfo[nextmap])
|
if (nextmap < NUMMAPS && !mapheaderinfo[nextmap])
|
||||||
P_AllocMapHeader(nextmap);
|
P_AllocMapHeader(nextmap);
|
||||||
|
|
||||||
if (skipstats)
|
if (skipstats && !modeattacking) // Don't skip stats if we're in record attack
|
||||||
G_AfterIntermission();
|
G_AfterIntermission();
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue