mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 21:31:04 +00:00
Force intermission to 10 seconds on replays
This commit is contained in:
parent
188552e069
commit
324108d120
1 changed files with 2 additions and 0 deletions
|
@ -780,6 +780,8 @@ void Y_StartIntermission(void)
|
||||||
{
|
{
|
||||||
if (cv_inttime.value == 0 && gametype == GT_COOP)
|
if (cv_inttime.value == 0 && gametype == GT_COOP)
|
||||||
timer = 0;
|
timer = 0;
|
||||||
|
else if (demoplayback) // Override inttime (which is pulled from the replay anyway
|
||||||
|
timer = 10*TICRATE;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
timer = cv_inttime.value*TICRATE;
|
timer = cv_inttime.value*TICRATE;
|
||||||
|
|
Loading…
Reference in a new issue