weekly and monthly crazyhouse tournaments

This commit is contained in:
Thibault Duplessis 2016-01-20 18:08:05 +07:00
parent f08d1d987c
commit 258349f6ce
2 changed files with 4 additions and 4 deletions

View file

@ -97,8 +97,7 @@ object Schedule {
case (Weekly, HyperBullet | Bullet, _) => 60 * 2
case (Weekly, SuperBlitz, _) => 60 * 2 + 30
case (Weekly, Blitz, Standard) => 60 * 3
case (Weekly, Blitz, _) => 60 * 2 // variant weekly is shorter
case (Weekly, Blitz, _) => 60 * 3
case (Weekly, Classical, _) => 60 * 4
case (Monthly, HyperBullet | Bullet, _) => 60 * 3

View file

@ -66,7 +66,8 @@ private[tournament] final class Scheduler(api: TournamentApi) extends Actor {
Schedule(Monthly, Bullet, Standard, std, at(lastSundayOfCurrentMonth, 18)),
Schedule(Monthly, SuperBlitz, Standard, std, at(lastSundayOfCurrentMonth, 19)),
Schedule(Monthly, Blitz, Standard, std, at(lastSundayOfCurrentMonth, 20)),
Schedule(Monthly, Classical, Standard, std, at(lastSundayOfCurrentMonth, 21))
Schedule(Monthly, Classical, Standard, std, at(lastSundayOfCurrentMonth, 21)),
Schedule(Monthly, Classical, Crazyhouse, std, at(lastSundayOfCurrentMonth, 22))
),
List( // weekly tournaments!
@ -74,7 +75,7 @@ private[tournament] final class Scheduler(api: TournamentApi) extends Actor {
Schedule(Weekly, SuperBlitz, Standard, std, at(nextSaturday, 19) |> orNextWeek),
Schedule(Weekly, Blitz, Standard, std, at(nextSaturday, 20) |> orNextWeek),
Schedule(Weekly, Classical, Standard, std, at(nextSaturday, 21) |> orNextWeek),
Schedule(Weekly, Blitz, Chess960, std, at(nextSaturday, 22) |> orNextWeek)
Schedule(Weekly, Blitz, Crazyhouse, std, at(nextSaturday, 22) |> orNextWeek)
),
List( // daily tournaments!