From 612a696829f2714024a96d9b1c69b8d241c74ef6 Mon Sep 17 00:00:00 2001 From: Jacob Date: Thu, 16 Apr 2026 23:13:45 -0400 Subject: [PATCH] feat: mute --- src/command/join.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/command/join.rs b/src/command/join.rs index 4908460..af5d4cf 100644 --- a/src/command/join.rs +++ b/src/command/join.rs @@ -288,6 +288,8 @@ pub async fn handle(state: State, interaction: Interaction) { call.add_global_event(CoreEvent::SpeakingStateUpdate.into(), handler.clone()); call.add_global_event(CoreEvent::VoiceTick.into(), handler); + + call.mute(true).await.expect("TODO"); } let channel_mention = format!("<#{voice_channel_id}>");