From a9561e667ea8f553402dedd1f520ef7f28754e84 Mon Sep 17 00:00:00 2001 From: MatteZ02 <47610069+MatteZ02@users.noreply.github.com> Date: Thu, 4 Jun 2020 13:33:57 +0300 Subject: [PATCH] Update play.js --- src/struct/funcs/play.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/struct/funcs/play.js b/src/struct/funcs/play.js index 62e8db07..51c6b376 100644 --- a/src/struct/funcs/play.js +++ b/src/struct/funcs/play.js @@ -79,7 +79,7 @@ module.exports = async function (guild, song, client, seek, play) { const embed = new Discord.MessageEmbed() .setTitle(`${client.messages.startPlaying}**${song.title}**`) .setDescription( - `Song duration: \`${client.funcs.msToTime(queue.songs[0].songLength, "hh:mm:ss")}\`` + `Song duration: \`${client.funcs.msToTime(queue.songs[0].songLength * 1000, "hh:mm:ss")}\`` ) .setColor(client.config.embedColor); queue.textChannel.send(embed);