module.exports = { name: 'nowplaying', alias: 'np', usage: '', description: 'See the currently playing song position and length.', onlyDev: false, permission: 'none', category: 'music', async execute(msg, args, client, Discord, prefix) { const radio = client.radio.get(msg.guild.id); if (!radio) return msg.channel.send('<:redx:674263474704220182> There is nothing playing.'); if (!radio.playing) return msg.channel.send('<:redx:674263474704220182> There is nothing playing.'); radio.time = radio.connection.dispatcher.streamTime; let completed = (radio.time.toFixed(0)); const embed = new Discord.MessageEmbed() .setTitle("__Now playing__") .setDescription(`**Now playing:** ${radio.url}\n\`${client.funcs.msToTime(completed, "hh:mm:ss")}\``) .setURL(radio.songs[0].url) .setThumbnail(thumbnail._rejectionHandler0) .setColor(client.config.embedColor) return msg.channel.send(embed); } };