From dedb20d64f78aad607799048740f80fc039b24b4 Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Sat, 6 May 2023 23:51:26 -0400 Subject: [PATCH] add flags property to voice state update --- src/util/schemas/VoiceStateUpdateSchema.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util/schemas/VoiceStateUpdateSchema.ts b/src/util/schemas/VoiceStateUpdateSchema.ts index a7d9f9d7..fda073e9 100644 --- a/src/util/schemas/VoiceStateUpdateSchema.ts +++ b/src/util/schemas/VoiceStateUpdateSchema.ts @@ -26,6 +26,7 @@ export interface VoiceStateUpdateSchema { preferred_region?: string; request_to_speak_timestamp?: Date; suppress?: boolean; + flags?: number; } export const VoiceStateUpdateSchema = { @@ -37,4 +38,5 @@ export const VoiceStateUpdateSchema = { $preferred_region: String, $request_to_speak_timestamp: Date, $suppress: Boolean, + $flags: Number, };