From 34b7c115eb4d5603ad50039c7f2a512e6ed58293 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 15 Sep 2020 15:49:59 -0400 Subject: [PATCH] Fix --- commands/games-sp/true-or-false.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/true-or-false.js b/commands/games-sp/true-or-false.js index 475e545a..bccfe224 100644 --- a/commands/games-sp/true-or-false.js +++ b/commands/games-sp/true-or-false.js @@ -56,7 +56,7 @@ module.exports = class TrueOrFalseCommand extends Command { `); const filter = res => { if (res.author.id !== msg.author.id) return false; - return trueAns.includes(res.content.toUpperCase()) || falseAns.includes(res.content.toUpperCase()); + return trueAns.includes(res.content.toLowerCase()) || falseAns.includes(res.content.toLowerCase()); } const msgs = await msg.channel.awaitMessages(filter, { max: 1,