From b1439c7ac31e6e5b060646c478e6b2a774306d02 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sun, 14 Feb 2021 21:58:37 +0100 Subject: :bug: fix guild model --- src/models/Guild.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit 1.5.1