aboutsummaryrefslogtreecommitdiff
path: root/commands/status.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-07-24 11:50:39 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-07-24 11:50:39 -0400
commit9d5ea75549c20a63c9a0ef3ce7e529cbe3c79b8a (patch)
tree00d8beabcc7c3680b7ea54e8557a7c08d52c6e8f /commands/status.js
parenta544b8e7d699461c49a69ab6072c7327e0519359 (diff)
downloadDLAP-9d5ea75549c20a63c9a0ef3ce7e529cbe3c79b8a.tar.gz
DLAP-9d5ea75549c20a63c9a0ef3ce7e529cbe3c79b8a.tar.bz2
DLAP-9d5ea75549c20a63c9a0ef3ce7e529cbe3c79b8a.zip
Removed a package and references to @discord.js/builder
Diffstat (limited to 'commands/status.js')
-rw-r--r--commands/status.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/commands/status.js b/commands/status.js
index 766b9be..654b496 100644
--- a/commands/status.js
+++ b/commands/status.js
@@ -19,8 +19,7 @@
*
***************************************************************************/
-import { SlashCommandBuilder } from '@discordjs/builders';
-import { EmbedBuilder } from 'discord.js';
+import { EmbedBuilder, SlashCommandBuilder } from 'discord.js';
import { audio, currentTrack, files, playerState } from '../AudioBackend.js';
export default {
@@ -45,6 +44,6 @@ export default {
.addFields({ name: 'Currently Playing', value: audio })
.addFields({ name: 'Up Next', value: audioName })
.setColor('#0066ff');
- interaction.reply({ embeds: [controlEmbed], ephemeral: true });
+ interaction.reply({ embeds: [controlEmbed] });
}
};