summary refs log tree commit diff
path: root/src/schema/VoiceStateUpdate.ts.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-21 22:16:48 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-21 22:16:48 +0200
commite434334a21247ac29809ef5c47f4c889e28d0c20 (patch)
tree02ec82f6acc57ee8c1aecf2d95a4254e83553fd7 /src/schema/VoiceStateUpdate.ts.ts
parentMerge branch 'master' of https://github.com/fosscord/fosscord-gateway (diff)
downloadserver-e434334a21247ac29809ef5c47f4c889e28d0c20.tar.xz
:sparkles: Member List
Diffstat (limited to 'src/schema/VoiceStateUpdate.ts.ts')
-rw-r--r--src/schema/VoiceStateUpdate.ts.ts2
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; }