From 81ea66d2e5085186f6019c9f0620db46ccf4bf34 Mon Sep 17 00:00:00 2001 From: Alex Page Date: Thu, 20 Jan 2022 22:12:27 -0500 Subject: [PATCH] More snark --- src/commands.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands.rs b/src/commands.rs index 099b189..35af40c 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -127,7 +127,7 @@ pub async fn play(ctx: &mut Context, command: &ApplicationCommandInteraction) -> message } else { - "Not in a voice channel to play in".to_string() + "Somehow neither of us are in a voice channel to begin with.".to_string() } } @@ -144,7 +144,7 @@ pub async fn stop(ctx: &Context, command: &ApplicationCommandInteraction) -> Str handler.stop(); - "Stopping song".to_string() + "Alright, I guess I'll stop.".to_string() } else { "I'm not even in a channel to begin with. Silly.".to_string() }