This repository was archived by the owner on Oct 11, 2025. It is now read-only.
|
I know that when connecting to a VoiceChannel you can simply pass down a |
Answered by
tcortega
Jan 28, 2025
Replies: 1 comment 3 replies
|
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,
},
}) |
3 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.