From e602fb1bd220e93ea73bbb5c4ec4d5bd880c5bf2 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 23 Jul 2021 20:31:44 -0600 Subject: [PATCH] Add the channel ID of the message to the bracket data --- src/types/database.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/database.d.ts b/src/types/database.d.ts index 4b6646b..bc8314f 100644 --- a/src/types/database.d.ts +++ b/src/types/database.d.ts @@ -6,6 +6,7 @@ interface database { }; bracket: { msg: string; + channel: string; quotes: string[]; votes: { [index: number]: number }; users: { [index: string]: number };