aboutsummaryrefslogtreecommitdiff
path: root/commands/status.js
diff options
context:
space:
mode:
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] });
}
};