diff --git a/commands/play.js b/commands/play.js index 3b2b644..dba6b25 100644 --- a/commands/play.js +++ b/commands/play.js @@ -4,6 +4,8 @@ exports.run = async (client, message, args) => { if (!message.member.voice.channel) return message.channel.send(`You're not in a voice channel ${emotes.error}`); + if (!args[0]) return message.channel.send(`Please indicate the title of a song ${emotes.error}`); + client.player.play(message, args.join(" ")); };