You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

9 lines
334 B

module.exports = {
name: 'nowplaying',
description: 'Get the song that is playing.',
execute(message) {
const serverQueue = message.client.queue.get(message.guild.id);
if (!serverQueue) return message.channel.send('There is nothing playing.');
return message.channel.send(`Now playing: ${serverQueue.songs[0].title}`);
},
};