mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-19 16:14:44 +00:00
Allow longer warmup Tourny
This commit is contained in:
parent
815fd0ac31
commit
b440c5abeb
|
|
@ -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!
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue