Allow longer warmup Tourny

This commit is contained in:
ChocoTaco1 2022-05-10 15:48:18 -04:00
parent 815fd0ac31
commit b440c5abeb

View file

@ -2916,7 +2916,10 @@ function startTourneyCountdown()
}
// lets get it on!
if($Host::warmupTime <= 30)
Countdown(30 * 1000);
else
Countdown($Host::warmupTime * 1000); //Follow warmupTime!
}
function checkTourneyMatchStart()
@ -2990,7 +2993,11 @@ function checkTourneyMatchStart()
Game.scheduleVote = "";
}
// lets get it on!
if($Host::warmupTime <= 30)
Countdown(30 * 1000);
else
Countdown($Host::warmupTime * 1000); //Follow warmupTime!
}
}