From e99165f43f19bdeb70b984d76f33fd54a127c94d Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Tue, 14 May 2024 20:36:12 +0300 Subject: [PATCH] Add season 4 --- 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 cee8c3fe5..976177f6e 100644 --- a/app/features/mmr/season.ts +++ b/app/features/mmr/season.ts @@ -33,6 +33,11 @@ export const SEASONS = starts: new Date("2024-03-04T17:00:00.000Z"), ends: new Date("2024-05-19T20:59:59.999Z"), }, + { + nth: 4, + starts: new Date("2024-06-03T17:00:00.000Z"), + ends: new Date("2024-08-18T20:59:59.999Z"), + }, ] as const); export type RankingSeason = (typeof SEASONS)[number];