From fab28f5f1b3748598ffd4449b3bb9aa59b47083e Mon Sep 17 00:00:00 2001 From: Thesourtimes Date: Wed, 15 Dec 2021 05:41:21 +0300 Subject: [PATCH] Make the test client togglable --- util/src/entities/Config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/util/src/entities/Config.ts b/util/src/entities/Config.ts index 492baa4c..079aa8bb 100644 --- a/util/src/entities/Config.ts +++ b/util/src/entities/Config.ts @@ -172,6 +172,9 @@ export interface ConfigValue { allowTemplateCreation: Boolean; allowDiscordTemplates: Boolean; allowRaws: Boolean; + }, + client: { + useTestClient: Boolean; } } @@ -346,5 +349,8 @@ export const DefaultConfigOptions: ConfigValue = { allowTemplateCreation: true, allowDiscordTemplates: true, allowRaws: false + }, + client: { + useTestClient: true } };