1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-19 22:11:55 +00:00

Update nowplaying.js

This commit is contained in:
MatteZ02 2019-10-24 20:56:17 +03:00
parent 54f3b6ca70
commit 1a858fe31b

View File

@ -15,7 +15,7 @@ module.exports = {
const embed = new Discord.RichEmbed()
.setTitle("__Now playing__")
.setDescription(`🎶**Now playing:** ${serverQueue.songs[0].title}\n${array.join('')} | \`${client.funcs.msToTime(completed)} / ${client.funcs.msToTime(songtime)}\``)
.setFooter(`Queued by \`${serverQueue.songs[0].author.tag}\``)
.setFooter(`Queued by ${serverQueue.songs[0].author.tag}`)
.setURL(serverQueue.songs[0].url)
.setColor("#b50002")
return message.channel.send(embed);