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;