Make the test client togglable

This commit is contained in:
Thesourtimes 2021-12-15 05:41:21 +03:00
parent 815b9074a5
commit fab28f5f1b

View File

@ -172,6 +172,9 @@ export interface ConfigValue {
allowTemplateCreation: Boolean; allowTemplateCreation: Boolean;
allowDiscordTemplates: Boolean; allowDiscordTemplates: Boolean;
allowRaws: Boolean; allowRaws: Boolean;
},
client: {
useTestClient: Boolean;
} }
} }
@ -346,5 +349,8 @@ export const DefaultConfigOptions: ConfigValue = {
allowTemplateCreation: true, allowTemplateCreation: true,
allowDiscordTemplates: true, allowDiscordTemplates: true,
allowRaws: false allowRaws: false
},
client: {
useTestClient: true
} }
}; };