From 9d5ea75549c20a63c9a0ef3ce7e529cbe3c79b8a Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 24 Jul 2022 11:50:39 -0400 Subject: Removed a package and references to @discord.js/builder --- commands/status.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'commands/status.js') 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] }); } }; -- cgit v1.2.3