From f8c43c6fb2e59f7639848befad2075e2a1af2476 Mon Sep 17 00:00:00 2001 From: Mathieu Dutour Date: Mon, 25 Sep 2023 12:42:08 +0200 Subject: [PATCH] Fix EDT timezone --- bot/timezones.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/timezones.ts b/bot/timezones.ts index 7b2c9cc..6edc0c8 100644 --- a/bot/timezones.ts +++ b/bot/timezones.ts @@ -18,11 +18,11 @@ export const timezones: { [tz: string]: number } = { UT: 0, GMT: 0, UTC: 0, - EDT: 0, CVT: -1 * 3600, BRST: -2 * 3600, BRT: -3 * 3600, AST: -4 * 3600, + EDT: -4 * 3600, EST: -5 * 3600, CDT: -5 * 3600, CST: -6 * 3600,