aboutsummaryrefslogtreecommitdiff
path: root/AudioBackend/AudioControl.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-12-20 17:54:56 -0500
committerAndrew Lee <alee14498@protonmail.com>2022-12-20 18:05:51 -0500
commite5c86859e4c6a9a6829bcc2e3cf626b05a873ff7 (patch)
tree96c04baa3f064a160a595a0faf73696cc5cf8eaa /AudioBackend/AudioControl.js
parent239b254760381946f57d6cbccb077f5341ca2f30 (diff)
downloadDLAP-e5c86859e4c6a9a6829bcc2e3cf626b05a873ff7.tar.gz
DLAP-e5c86859e4c6a9a6829bcc2e3cf626b05a873ff7.tar.bz2
DLAP-e5c86859e4c6a9a6829bcc2e3cf626b05a873ff7.zip
Revamped next/previous cmds (Voting system); Basic i18n support;
Diffstat (limited to 'AudioBackend/AudioControl.js')
-rw-r--r--AudioBackend/AudioControl.js2
1 files changed, 1 insertions, 1 deletions
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);