diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-02-14 21:58:37 +0100 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-02-14 21:58:37 +0100 |
commit | b1439c7ac31e6e5b060646c478e6b2a774306d02 (patch) | |
tree | c70e138061b08bf4272ce7285c27fa53a6ea0e3f /src | |
parent | :bug: fix Event type (diff) | |
download | server-b1439c7ac31e6e5b060646c478e6b2a774306d02.tar.xz |
:bug: fix guild model
Diffstat (limited to 'src')
-rw-r--r-- | src/models/Guild.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/Guild.ts b/src/models/Guild.ts index 11629fb5..a6ed6773 100644 --- a/src/models/Guild.ts +++ b/src/models/Guild.ts @@ -26,6 +26,7 @@ export interface Guild { // roles: Role[]; // * Role are stored in a seperate collection // channels: GuildChannel[]; // * Channels are stored in a seperate collection // emojis: Emoji[]; // * Emojis are stored in a seperate collection + // voice_states: []; // * voice_states are stored in a seperate collection mfa_level?: number; name: string; owner_id: bigint; @@ -41,7 +42,6 @@ export interface Guild { unavailable?: boolean; vanity_url_code?: string; verification_level?: number; - voice_states: []; // connected users welcome_screen: []; // welcome splash screen if a user joins guild widget_channel_id?: bigint; widget_enabled?: boolean; |