From 297d69785664339843ad5853cec9695476f87bb4 Mon Sep 17 00:00:00 2001 From: Lio Young Date: Tue, 20 Apr 2021 00:19:24 +0200 Subject: [PATCH] add thaldrin to settings and fix types --- sample.config.ts | 3 ++- src/utils/types.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sample.config.ts b/sample.config.ts index 8513c12..4bdda5f 100644 --- a/sample.config.ts +++ b/sample.config.ts @@ -8,7 +8,8 @@ export default { token: "", apis: { sheri: "", - yiffrest: "" + yiffrest: "", + thaldrin: "" }, supabase: { url: "", diff --git a/src/utils/types.ts b/src/utils/types.ts index 23b42e4..8a91b4a 100644 --- a/src/utils/types.ts +++ b/src/utils/types.ts @@ -43,7 +43,7 @@ export type Context = { author: User; member: GuildMember | null; supabase: SupabaseClient; - guildSettings: Server; + settings: Server; config: Config; isDeveloper: string[] }