1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 04:31:56 +00:00
musix-oss/commands/invite.js
2019-10-10 16:43:04 +03:00

12 lines
385 B
JavaScript

module.exports = {
name: 'invite',
description: 'Invite command.',
cooldown: 5,
execute(message, args, client, Discord, prefix) {
const embed = new Discord.RichEmbed()
.setTitle('Invite Musix to your Discord server!')
.setURL('https://bit.ly/2YDrKgh')
.setColor('#b50002')
return message.channel.send(embed);
}
};