aboutsummaryrefslogtreecommitdiff
path: root/bot.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot.js')
-rw-r--r--bot.js5
1 files changed, 3 insertions, 2 deletions
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 });
}
}
});