diff --git a/commands/play.js b/commands/play.js index 1d58b03..0e1be45 100644 --- a/commands/play.js +++ b/commands/play.js @@ -16,5 +16,5 @@ exports.help = { } exports.run = async (client, message, args, level, data) => { - client.music.play(message, args[0]); + await client.music.play(message, args[0]); }; \ No newline at end of file diff --git a/helpers/music.js b/helpers/music.js index 16fe7c4..7c0aadd 100644 --- a/helpers/music.js +++ b/helpers/music.js @@ -114,7 +114,7 @@ module.exports = client => { // Figure out if the bot should add it to queue or play it right now if(guild.playing) { - + message.reply('added **' + video.snippet.title + '** to the queue'); } else { guild.playing = true;