1 files changed, 2 insertions, 0 deletions
diff --git a/src/schema/VoiceStateUpdate.ts.ts b/src/schema/VoiceStateUpdate.ts.ts
index 5e3e35e0..ccadda60 100644
--- a/src/schema/VoiceStateUpdate.ts.ts
+++ b/src/schema/VoiceStateUpdate.ts.ts
@@ -3,6 +3,7 @@ export const VoiceStateUpdateSchema = {
channel_id: String,
self_mute: Boolean,
self_deaf: Boolean,
+ self_video: Boolean,
};
export interface VoiceStateUpdateSchema {
@@ -10,4 +11,5 @@ export interface VoiceStateUpdateSchema {
channel_id: string;
self_mute: boolean;
self_deaf: boolean;
+ self_video: boolean;
}
|