summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/Config.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util/Config.ts b/src/util/Config.ts

index e2625aff..200ec1b2 100644 --- a/src/util/Config.ts +++ b/src/util/Config.ts
@@ -22,6 +22,11 @@ export interface RateLimit { } export interface DefaultOptions { + permissions: { + user: { + createGuilds: boolean; + }; + }; limits: { user: { maxGuilds: number; @@ -96,6 +101,11 @@ export interface DefaultOptions { } export const DefaultOptions: DefaultOptions = { + permissions: { + user: { + createGuilds: true, + }, + }, limits: { user: { maxGuilds: 100,