From 51053b043b9128073c0bc02a4ac9e538ed235edd Mon Sep 17 00:00:00 2001 From: "DavidCrompton1192@gmail.com" Date: Sun, 12 Mar 2023 14:15:02 -0400 Subject: [PATCH] Remove hello from join --- src/commands/vc.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands/vc.rs b/src/commands/vc.rs index d47cc79..db5642e 100644 --- a/src/commands/vc.rs +++ b/src/commands/vc.rs @@ -14,7 +14,6 @@ pub async fn join(ctx: &Context, msg: &Message) -> CommandResult { .voice_states .get(&msg.author.id) .and_then(|voice_state| voice_state.channel_id); - msg.channel_id.say(&ctx.http, "pong!").await?; let connect_to = match channel_id { Some(channel) => channel,