From 3e12c4248b09c8bbc0da2e9a7ed545bd5dc84a73 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Mar 2021 20:07:54 -0500 Subject: [PATCH] Fix --- commands/games-sp/guess-song.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}**!`);