-
I know that when connecting to a VoiceChannel you can simply pass down a |
Beta Was this translation helpful? Give feedback.
Answered by
tcortega
Jan 28, 2025
Replies: 1 comment
-
Found a way to do it using the client's underlaying websocket and broadcasting the packet manually. client.ws.broadcast({
op: GatewayOpCodes.VOICE_STATE_UPDATE, // 4
d: {
guild_id: connection.channel.guildId,
channel_id: connection.channel.id,
self_mute: true,
self_deaf: false,
self_video: false,
},
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tcortega
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Found a way to do it using the client's underlaying websocket and broadcasting the packet manually.