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.

8 lines
334 B

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