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-08-10 00:15:31 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-10 00:15:31 +0200
commitcfab1d34d1a5e48419cb6b466f686b57d136a63a (patch)
tree24c9a6fb3e589cb16e1a204d67022fdabdf84093 /src/schema/VoiceStateUpdate.ts.ts
parent:sparkles: ping route (diff)
downloadserver-cfab1d34d1a5e48419cb6b466f686b57d136a63a.tar.xz
:bug: fix voicestate
Diffstat (limited to 'src/schema/VoiceStateUpdate.ts.ts')
-rw-r--r--src/schema/VoiceStateUpdate.ts.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/schema/VoiceStateUpdate.ts.ts b/src/schema/VoiceStateUpdate.ts.ts

index ccadda60..4345c2f6 100644 --- a/src/schema/VoiceStateUpdate.ts.ts +++ b/src/schema/VoiceStateUpdate.ts.ts
@@ -1,5 +1,5 @@ export const VoiceStateUpdateSchema = { - guild_id: String, + $guild_id: String, channel_id: String, self_mute: Boolean, self_deaf: Boolean, @@ -7,7 +7,7 @@ export const VoiceStateUpdateSchema = { }; export interface VoiceStateUpdateSchema { - guild_id: string; + guild_id?: string; channel_id: string; self_mute: boolean; self_deaf: boolean;