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

Update index.js

This commit is contained in:
MatteZ02 2019-07-30 15:55:28 +03:00
parent d9e7d8d3ad
commit f64f5dba92

View File

@ -17,6 +17,7 @@ client.on('message', async msg => {
msg.channel.send('-help to see my commands.')
}
if (msg.content.startsWith('>')) {
if (msg.author.id !== '360363051792203779') return msg.channel.send(':x: Developement commands are not avaiable for public usage!')
if (msg.author.id === '360363051792203779') {
if (msg.content === '>devstop') {
serverQueue.songs = [];
@ -25,6 +26,9 @@ client.on('message', async msg => {
if (msg.content === '>url') {
msg.channel.send(`${serverQueue.songs[0].url}`)
}
if (msg.content === '>eval') {
msg.channel.send(eval(args.join(' ')));
}
}
}
if (msg.content.startsWith(`${PREFIX}`)) {
@ -65,6 +69,7 @@ client.on('message', async msg => {
.addField('```-ping```', 'See the current ping for Musix', true)
.addField('```-info```', 'Display info and instructions.', true)
.addField('```-help```', 'Display the help.', true)
.addField('Developement command prefix: >', 'Developement commands are not avaiable to public usage!', true)
.setAuthor('Musix', 'https://cdn.discordapp.com/avatars/572405135658188800/04c6f22b7600ddecfbc245dd3ec10f9f.png?size=2048')
.setColor('#b50002')
msg.channel.send(embed);