1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-11-10 05:10:17 +00:00

Update invite.js

This commit is contained in:
MatteZ02 2019-08-04 16:00:05 +03:00
parent e658301846
commit e07ec319f2

View File

@ -3,6 +3,11 @@ module.exports = {
description: 'Invite command.',
cooldown: 5,
execute(message, args, client, RichEmbed) {
return message.channel.send('Invite me with: https://bit.ly/2YDrKgh');
const embed = new RichEmbed()
.setTitle('Commands for Musix!')
.url('https://bit.ly/2YDrKgh')
.setAuthor(client.user.username, client.user.displayAvatarURL)
.setColor('#b50002')
return message.channel.send(embed);
}
};