From e5c86859e4c6a9a6829bcc2e3cf626b05a873ff7 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 20 Dec 2022 17:54:56 -0500 Subject: Revamped next/previous cmds (Voting system); Basic i18n support; --- AudioBackend/AudioControl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'AudioBackend/AudioControl.js') diff --git a/AudioBackend/AudioControl.js b/AudioBackend/AudioControl.js index 447e040..3a9c7a5 100644 --- a/AudioBackend/AudioControl.js +++ b/AudioBackend/AudioControl.js @@ -55,7 +55,7 @@ export async function previousAudio(bot, interaction) { if (currentTrack <= 0) { return await interaction.reply({ content: 'You are at the beginning of the playlist, cannot go further than this', ephemeral: true }); } else { - await interaction.reply({ content: 'Playing previous music', ephemeral: true }); + await interaction.reply({ content: 'Playing previous music' }); player.stop(); updatePlaylist('back'); return await playAudio(bot); -- cgit v1.2.3