From 4ecd2df54f816ad485814bf5aa3b9fea8fc0741e Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Mon, 28 Aug 2023 00:36:14 +0300 Subject: [PATCH] Add season 1 dates --- app/features/mmr/season.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/features/mmr/season.ts b/app/features/mmr/season.ts index 8de88321f..c5c6b8ea1 100644 --- a/app/features/mmr/season.ts +++ b/app/features/mmr/season.ts @@ -13,6 +13,11 @@ const SEASONS = starts: new Date("2023-08-14T17:00:00.000Z"), ends: new Date("2023-08-27T20:59:59.999Z"), }, + { + nth: 1, + starts: new Date("2023-09-11T17:00:00.000Z"), + ends: new Date("2023-11-19T20:59:59.999Z"), + }, ] as const); export type RankingSeason = (typeof SEASONS)[number];