diff --git a/src/commands/music/nowplaying.ts b/src/commands/music/nowplaying.ts index 4f0f255..5e65f3f 100644 --- a/src/commands/music/nowplaying.ts +++ b/src/commands/music/nowplaying.ts @@ -29,10 +29,23 @@ export default async function nowplaying(interaction: ChatInputCommandInteractio return } + const progressBar = queue.node.createProgressBar({ + leftChar: "▬", + rightChar: "▬", + separator: "|", + indicator: "🔘", + timecodes: true, + length: 15 + }) + await interaction.editReply({ embeds: [{ title: "Now Playing", - description: `[${current.title}](${current.url})`, + description: ` + [${current.title}](${current.url}) + + ${progressBar} + `, color: embedColor, thumbnail: { url: current.thumbnail