1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-19 22:11:55 +00:00

Update index.js

This commit is contained in:
MatteZ02 2019-06-06 07:42:53 +03:00
parent a33fcd9c40
commit bfb105808d

View File

@ -27,7 +27,6 @@ client.on('ready', () => { //startup stuff
});
client.on('message', msg => {
if (msg.member.guild.roles.find(x => x.name === 'DJ')) {
if (msg.content === '!test') {
if (msg.author.username === 'Matte') {
msg.channel.send('Bot is currently online hosted!')
@ -77,15 +76,16 @@ client.on('message', msg => {
.setColor('#b50002')
msg.channel.send(embed);
}
}
if (msg.content === `${PREFIX}invite`) {
msg.channel.send('https://bit.ly/2V3D0p7')
}
});
client.on('message', async msg => {
var textcoms = ['!test','!restart','!help','!info','!invite']
if (msg.author.bot) return undefined;
if (msg.content.startsWith(`${PREFIX}`)) {
if (msg.content === textcoms) return;
if (msg.member.guild.roles.find(x => x.name === 'DJ')) {
if (!msg.member.roles.find(x => x.name === 'DJ')) {
if (msg.content === `${PREFIX}invite`) {