diff --git a/commands/games-sp/guess-song.js b/commands/games-sp/guess-song.js index ac9e6320..d3536a02 100644 --- a/commands/games-sp/guess-song.js +++ b/commands/games-sp/guess-song.js @@ -67,7 +67,7 @@ module.exports = class GuessSongCommand extends Command { this.client.dispatchers.delete(msg.guild.id); if (!msgs.size) return msg.reply(`Time! It's **${data.name}** by **${data.artist}**!`); const guess = msgs.first().content.toLowerCase(); - if (guess.includes(data.name.toLowerCase())) { + if (!guess.includes(data.name.toLowerCase()) && !data.name.toLowerCase().includes(guess)) { return msg.reply(`Nope! It's **${data.name}** by **${data.artist}**!`); } return msg.reply(`Nice! It's **${data.name}** by **${data.artist}**!`);