Skip to content

Commit 653941e

Browse files
authored
Merge pull request lichess-org#4659 from ddugovic/racing_kings_arena
Switch schedules for Racing Kings and Three-Check arenas
2 parents e2735f9 + 8a4a9a6 commit 653941e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/tournament/src/main/TournamentScheduler.scala

+5-5
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Thank you all, you rock!"""
138138
month.lastWeek.withDayOfWeek(MONDAY) -> Chess960,
139139
month.lastWeek.withDayOfWeek(TUESDAY) -> Crazyhouse,
140140
month.lastWeek.withDayOfWeek(WEDNESDAY) -> KingOfTheHill,
141-
month.lastWeek.withDayOfWeek(THURSDAY) -> ThreeCheck,
141+
month.lastWeek.withDayOfWeek(THURSDAY) -> RacingKings,
142142
month.lastWeek.withDayOfWeek(FRIDAY) -> Antichess,
143143
month.lastWeek.withDayOfWeek(SATURDAY) -> Atomic,
144144
month.lastWeek.withDayOfWeek(SUNDAY) -> Horde
@@ -171,11 +171,11 @@ Thank you all, you rock!"""
171171
month.secondWeek.withDayOfWeek(SUNDAY) -> Chess960,
172172
month.thirdWeek.withDayOfWeek(MONDAY) -> Crazyhouse,
173173
month.thirdWeek.withDayOfWeek(TUESDAY) -> KingOfTheHill,
174-
month.thirdWeek.withDayOfWeek(WEDNESDAY) -> ThreeCheck,
174+
month.thirdWeek.withDayOfWeek(WEDNESDAY) -> RacingKings,
175175
month.thirdWeek.withDayOfWeek(THURSDAY) -> Antichess,
176176
month.thirdWeek.withDayOfWeek(FRIDAY) -> Atomic,
177177
month.thirdWeek.withDayOfWeek(SATURDAY) -> Horde,
178-
month.thirdWeek.withDayOfWeek(SUNDAY) -> RacingKings
178+
month.thirdWeek.withDayOfWeek(SUNDAY) -> ThreeCheck
179179
).flatMap {
180180
case (day, variant) => at(day, 16) map { date =>
181181
Schedule(Shield, Blitz, variant, std, date) plan {
@@ -206,7 +206,7 @@ Thank you all, you rock!"""
206206
nextMonday -> Chess960,
207207
nextTuesday -> Crazyhouse,
208208
nextWednesday -> KingOfTheHill,
209-
nextThursday -> ThreeCheck,
209+
nextThursday -> RacingKings,
210210
nextFriday -> Antichess,
211211
nextSaturday -> Atomic,
212212
nextSunday -> Horde
@@ -238,7 +238,7 @@ Thank you all, you rock!"""
238238
at(today, 20) map { date => Schedule(Daily, Blitz, Crazyhouse, std, date |> orTomorrow).plan },
239239
at(today, 21) map { date => Schedule(Daily, Blitz, Chess960, std, date |> orTomorrow).plan },
240240
at(today, 22) map { date => Schedule(Daily, SuperBlitz, KingOfTheHill, std, date |> orTomorrow).plan },
241-
at(today, 23) map { date => Schedule(Daily, SuperBlitz, ThreeCheck, std, date |> orTomorrow).plan },
241+
at(today, 23) map { date => Schedule(Daily, SuperBlitz, RacingKings, std, date |> orTomorrow).plan },
242242
at(today, 0) map { date => Schedule(Daily, SuperBlitz, Antichess, std, date |> orTomorrow).plan },
243243
at(tomorrow, 1) map { date => Schedule(Daily, SuperBlitz, Atomic, std, date).plan },
244244
at(tomorrow, 2) map { date => Schedule(Daily, SuperBlitz, Horde, std, date).plan }

0 commit comments

Comments
 (0)