From e1516d2cf242fa884d9b851e5d8c8380fa50c514 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 4 Apr 2024 23:41:59 -0400 Subject: [PATCH] Fix --- commands/voice/morse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/voice/morse.js b/commands/voice/morse.js index 11b0f940..4e66a9d6 100644 --- a/commands/voice/morse.js +++ b/commands/voice/morse.js @@ -48,7 +48,7 @@ module.exports = class MorseCommand extends Command { } if (!connection.canPlay) return msg.reply('I am already playing audio in this server.'); await reactIfAble(msg, this.client.user, LOADING_EMOJI_ID, '💬'); - await msg.say(parsed); + await msg.reply(parsed); connection.play(Readable.from([this.morse(translated)])); await reactIfAble(msg, this.client.user, '🔉'); return null;