1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 07:41:56 +00:00

Update index.js

This commit is contained in:
MatteZ02 2019-06-05 20:10:54 +03:00
parent ca15b1361e
commit 6b70f6599d

View File

@ -78,6 +78,9 @@ client.on('message', msg => {
msg.channel.send(embed); msg.channel.send(embed);
} }
} }
if (msg.content === `${PREFIX}invite`) {
msg.channel.send('https://bit.ly/2V3D0p7')
}
}); });
client.on('message', async msg => { client.on('message', async msg => {
@ -86,7 +89,7 @@ client.on('message', async msg => {
if (msg.member.guild.roles.find(x => x.name === 'DJ')) { if (msg.member.guild.roles.find(x => x.name === 'DJ')) {
if (!msg.member.roles.find(x => x.name === 'DJ')) { if (!msg.member.roles.find(x => x.name === 'DJ')) {
if (msg.content === `${PREFIX}invite`) { if (msg.content === `${PREFIX}invite`) {
msg.channel.send('https://bit.ly/2V3D0p7') return undefined
} }
msg.channel.send(':x: i\'m sorry you need to have the \'DJ\' role!') msg.channel.send(':x: i\'m sorry you need to have the \'DJ\' role!')
} }