From 2471564098b1de1a635d90f381ef67cf2cb43511 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 8 Jul 2022 12:09:06 -0400 Subject: New command; Some tweaks --- commands/status.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'commands/status.js') diff --git a/commands/status.js b/commands/status.js index e012239..7952238 100644 --- a/commands/status.js +++ b/commands/status.js @@ -28,13 +28,18 @@ export default { .setName('status') .setDescription('Checks what audio file is playing currently'), async execute(interaction, bot) { - let nextAudio = currentTrack - nextAudio++ + + let audioID = currentTrack + audioID++ + + let audioName = audioArray[audioID] + audioName = audioName.split('.').slice(0, -1).join('.'); + let controlEmbed = new MessageEmbed() .setAuthor({name: `${bot.user.username} Status`, iconURL: bot.user.avatarURL()}) .addField('State', playerState) .addField('Currently Playing', audio) - .addField('Next Music', audioArray[nextAudio]) + .addField('Up Next', audioName) .setColor('#0066ff') interaction.reply({embeds:[controlEmbed], ephemeral:true}) }, -- cgit v1.2.3