(WIP) fredboat style selection menu for music

This commit is contained in:
Emily 2020-04-14 15:28:25 +10:00
parent b36a746bb4
commit dad836e630
3 changed files with 48 additions and 13 deletions

View file

@ -15,6 +15,6 @@ exports.help = {
parameters: '[query] - A query to find video by or a link to the video.'
}
exports.run = async (client, message, [...args], level, data) => {
await client.music.play(message, args)
exports.run = async (client, message, args, level, data) => {
await client.music.play(message, args.join(' '))
}