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

Update index.js

This commit is contained in:
MatteZ02 2019-06-16 16:25:12 +03:00
parent 99e5c6903d
commit 728ea82a7d

View File

@ -202,11 +202,14 @@ Please provide a value to select one of the search results ranging from __1-10__
} }
if (msg.content === `${PREFIX}`) return; if (msg.content === `${PREFIX}`) return;
msg.channel.send(':x: Unknown command! Type -help for the list of commands!') msg.channel.send(':x: Unknown command! Type -help for the list of commands!')
var coms = []
if (msg.content.includes(coms[i])) {
if (!msg.member.roles.find(x => x.name === 'DJ')) { 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!') msg.channel.send(':x: i\'m sorry but you need to have the \'DJ\' role use music commands!')
return; return;
} }
} }
}
else { else {
const args = msg.content.split(' '); const args = msg.content.split(' ');
const searchString = args.slice(1).join(' '); const searchString = args.slice(1).join(' ');