mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-07-16 00:24:35 +00:00
Allow longer warmup Tourny
This commit is contained in:
parent
815fd0ac31
commit
b440c5abeb
1 changed files with 11 additions and 4 deletions
|
|
@ -2916,7 +2916,10 @@ function startTourneyCountdown()
|
||||||
}
|
}
|
||||||
|
|
||||||
// lets get it on!
|
// lets get it on!
|
||||||
|
if($Host::warmupTime <= 30)
|
||||||
Countdown(30 * 1000);
|
Countdown(30 * 1000);
|
||||||
|
else
|
||||||
|
Countdown($Host::warmupTime * 1000); //Follow warmupTime!
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkTourneyMatchStart()
|
function checkTourneyMatchStart()
|
||||||
|
|
@ -2990,7 +2993,11 @@ function checkTourneyMatchStart()
|
||||||
Game.scheduleVote = "";
|
Game.scheduleVote = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// lets get it on!
|
||||||
|
if($Host::warmupTime <= 30)
|
||||||
Countdown(30 * 1000);
|
Countdown(30 * 1000);
|
||||||
|
else
|
||||||
|
Countdown($Host::warmupTime * 1000); //Follow warmupTime!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue