diff --git a/commands/nowplaying.js b/commands/nowplaying.js index ec609735..fed89fc0 100644 --- a/commands/nowplaying.js +++ b/commands/nowplaying.js @@ -83,16 +83,16 @@ module.exports = { 'Unavailable'; const queueLength = queue.tracks.data.length; const timestamp = queue.node.getTimestamp(); - let bar = `\`${ + let bar = `**\`${ timestamp.current.label - }\` ${queue.node.createProgressBar({ + }\`** ${queue.node.createProgressBar({ queue: false, length: progressBarOptions.length ?? 12, timecodes: progressBarOptions.timecodes ?? false, indicator: progressBarOptions.indicator ?? '🔘', leftChar: progressBarOptions.leftChar ?? '▬', rightChar: progressBarOptions.rightChar ?? '▬' - })} \`${timestamp.total.label}\``; + })} **\`${timestamp.total.label}\`**`; if ( currentTrack.raw.duration === 0 || @@ -233,7 +233,7 @@ module.exports = { iconURL: interaction.user.avatarURL() }) .setDescription( - `**${embedIcons.skipped} Skipped track**\n${durationFormat} **[${skippedTrack.title}](${skippedTrack.url})**` + + `**${embedIcons.skipped} Skipped track**\n**${durationFormat} [${skippedTrack.title}](${skippedTrack.url})**` + `${ queue.repeatMode === 0 ? '' diff --git a/commands/play.js b/commands/play.js index b60b7b63..4e189965 100644 --- a/commands/play.js +++ b/commands/play.js @@ -179,7 +179,7 @@ module.exports = { .setDescription( `**${ embedIcons.success - } Added playlist to queue**\n${durationFormat} **[${ + } Added playlist to queue**\n**${durationFormat} [${ track.title }](${track.url})**\n\nAnd **${ searchResult.tracks.length - 1 @@ -203,7 +203,7 @@ module.exports = { iconURL: interaction.user.avatarURL() }) .setDescription( - `**${embedIcons.audioStartedPlaying} Started playing**\n${durationFormat} **[${track.title}](${track.url})**` + `**${embedIcons.audioStartedPlaying} Started playing**\n**${durationFormat} [${track.title}](${track.url})**` ) .setThumbnail(track.thumbnail) .setColor(embedColors.colorSuccess) @@ -221,7 +221,7 @@ module.exports = { iconURL: interaction.user.avatarURL() }) .setDescription( - `${embedIcons.success} **Added to queue**\n${durationFormat} **[${track.title}](${track.url})**` + `${embedIcons.success} **Added to queue**\n**${durationFormat} [${track.title}](${track.url})**` ) .setThumbnail(track.thumbnail) .setColor(embedColors.colorSuccess) diff --git a/commands/queue.js b/commands/queue.js index 1179cc9b..060434f7 100644 --- a/commands/queue.js +++ b/commands/queue.js @@ -98,7 +98,7 @@ module.exports = { return `**${ pageIndex * 10 + index + 1 - }.** ${durationFormat} **[${track.title}](${track.url})**`; + }.** **${durationFormat} [${track.title}](${track.url})**`; }) .join('\n'); } @@ -146,16 +146,16 @@ module.exports = { }); } else { const timestamp = queue.node.getTimestamp(); - let bar = `\`${ + let bar = `**\`${ timestamp.current.label - }\` ${queue.node.createProgressBar({ + }\`** ${queue.node.createProgressBar({ queue: false, length: progressBarOptions.length ?? 12, timecodes: progressBarOptions.timecodes ?? false, indicator: progressBarOptions.indicator ?? '🔘', leftChar: progressBarOptions.leftChar ?? '▬', rightChar: progressBarOptions.rightChar ?? '▬' - })} \`${timestamp.total.label}\``; + })} **\`${timestamp.total.label}\`**`; if ( currentTrack.raw.duration === 0 || diff --git a/commands/remove.js b/commands/remove.js index 6a4d1e43..c0d33d98 100644 --- a/commands/remove.js +++ b/commands/remove.js @@ -73,7 +73,7 @@ module.exports = { iconURL: interaction.user.avatarURL() }) .setDescription( - `**${embedIcons.success} Removed track**\n${durationFormat} **[${removedTrack.title}](${removedTrack.url})**` + `**${embedIcons.success} Removed track**\n**${durationFormat} [${removedTrack.title}](${removedTrack.url})**` ) .setThumbnail(removedTrack.thumbnail) .setColor(embedColors.colorSuccess) diff --git a/commands/skip.js b/commands/skip.js index 731835f3..51e49955 100644 --- a/commands/skip.js +++ b/commands/skip.js @@ -73,7 +73,7 @@ module.exports = { iconURL: interaction.user.avatarURL() }) .setDescription( - `**${embedIcons.skipped} Skipped track**\n${durationFormat} **[${skippedTrack.title}](${skippedTrack.url})**` + `**${embedIcons.skipped} Skipped track**\n**${durationFormat} [${skippedTrack.title}](${skippedTrack.url})**` ) .setThumbnail(skippedTrack.thumbnail) .setColor(embedColors.colorSuccess) @@ -120,7 +120,7 @@ module.exports = { iconURL: interaction.user.avatarURL() }) .setDescription( - `**${embedIcons.skipped} Skipped track**\n${durationFormat} **[${skippedTrack.title}](${skippedTrack.url})**` + + `**${embedIcons.skipped} Skipped track**\n**${durationFormat} [${skippedTrack.title}](${skippedTrack.url})**` + `${ queue.repeatMode === 0 ? ''