1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 10:51:56 +00:00
musix-oss/commands/invite.js

12 lines
385 B
JavaScript
Raw Normal View History

2019-08-02 08:32:00 +00:00
module.exports = {
name: 'invite',
description: 'Invite command.',
cooldown: 5,
2019-10-10 13:43:04 +00:00
execute(message, args, client, Discord, prefix) {
const embed = new Discord.RichEmbed()
2019-08-04 13:05:06 +00:00
.setTitle('Invite Musix to your Discord server!')
2019-08-04 13:02:31 +00:00
.setURL('https://bit.ly/2YDrKgh')
2019-08-04 13:00:05 +00:00
.setColor('#b50002')
return message.channel.send(embed);
2019-08-02 08:32:00 +00:00
}
};