Make the test client togglable

This commit is contained in:
Thesourtimes
2021-12-15 05:41:21 +03:00
parent 21f76f6ca7
commit 87f7c9b7a3
2 changed files with 10 additions and 2 deletions
+6
View File
@@ -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
}
};