mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 05:10:17 +00:00
11 lines
402 B
JavaScript
11 lines
402 B
JavaScript
module.exports = {
|
|
name: 'nowplaying',
|
|
description: 'Now playing command.',
|
|
cooldown: 5,
|
|
execute(message, args, client, RichEmbed) {
|
|
const serverQueue = client.queue.get(message.guild.id);
|
|
if (!serverQueue) return message.channel.send(':x: There is nothing playing.');
|
|
return message.channel.send(`🎶 Now playing: **${serverQueue.songs[0].title}**`);
|
|
}
|
|
};
|