Remove hello from join

This commit is contained in:
2023-03-12 14:15:02 -04:00
parent 3e1bb11104
commit 51053b043b

View File

@@ -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,