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

13 lines
423 B
JavaScript
Raw Normal View History

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