If timelimit is being modified before starttime, tick the secret timer but don't modify the total limit.

This commit is contained in:
toaster 2022-10-15 16:03:39 +01:00 committed by GenericHeroGuy
parent dea4512fd8
commit eeafd2bcc0

View file

@ -1010,6 +1010,13 @@ void P_CheckTimeLimit(void)
if (!timelimitintics)
return;
if (leveltime < starttime)
{
if (secretextratime)
secretextratime--;
return;
}
if (secretextratime)
{
secretextratime--;