From a555449001cbe87503e5ffe9b311aceb59592c63 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 3 Apr 2022 16:43:47 -0400 Subject: Audio states on control; Control can be ran once; Ping update, etc --- bot.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bot.js') diff --git a/bot.js b/bot.js index d14f50c..476138d 100644 --- a/bot.js +++ b/bot.js @@ -31,8 +31,9 @@ bot.login(config.token); /** * Project Ideas: * New queue system - * List MP3 files * Shuffle or "Play by order" mode + * Audio streaming + * Attempt to disable buttons (for control command) for regular users */ // Slash Command Handler @@ -93,7 +94,7 @@ bot.on('interactionCreate', async interaction => { if (error == null) { await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true }); } else { - await interaction.reply({ content: `There was an error while executing this command!\nShare this to the bot owner!\n\nDetails:\`\`\`${error}\`\`\``, ephemeral: true }); + await interaction.reply({ content: `There was an error while executing this command! Share this to the bot owner!\n\nDetails:\`\`\`${error}\`\`\``, ephemeral: true }); } } }); -- cgit v1.2.3