aboutsummaryrefslogtreecommitdiff
path: root/bot.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-04-03 16:43:47 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-04-03 16:43:47 -0400
commita555449001cbe87503e5ffe9b311aceb59592c63 (patch)
treebf2920c4532ca65b5837d459e46bbe53c893de76 /bot.js
parentdaf3c1735513bb252614a0047116088e242f7984 (diff)
downloadDLAP-a555449001cbe87503e5ffe9b311aceb59592c63.tar.gz
DLAP-a555449001cbe87503e5ffe9b311aceb59592c63.tar.bz2
DLAP-a555449001cbe87503e5ffe9b311aceb59592c63.zip
Audio states on control; Control can be ran once; Ping update, etc
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 });
}
}
});