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-16 16:28:54 +03:00
parent 728ea82a7d
commit 20938dd9b9

View File

@ -201,13 +201,13 @@ Please provide a value to select one of the search results ranging from __1-10__
return undefined;
}
if (msg.content === `${PREFIX}`) return;
msg.channel.send(':x: Unknown command! Type -help for the list of commands!')
var coms = []
var coms = ['-play','-queue','-np','-volume','-pause','-resume','-stop','-skip']
if (msg.content.includes(coms[i])) {
if (!msg.member.roles.find(x => x.name === 'DJ')) {
msg.channel.send(':x: i\'m sorry but you need to have the \'DJ\' role use music commands!')
return;
}
msg.channel.send(':x: Unknown command! Type -help for the list of commands!')
}
}
else {