mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 04:11:18 +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])
|
||||
P_AllocMapHeader(nextmap);
|
||||
|
||||
if (skipstats)
|
||||
if (skipstats && !modeattacking) // Don't skip stats if we're in record attack
|
||||
G_AfterIntermission();
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue