diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-04-03 16:43:47 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-04-03 16:43:47 -0400 |
| commit | a555449001cbe87503e5ffe9b311aceb59592c63 (patch) | |
| tree | bf2920c4532ca65b5837d459e46bbe53c893de76 /bot.js | |
| parent | daf3c1735513bb252614a0047116088e242f7984 (diff) | |
| download | DLAP-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.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 }); } } }); |
