From 3b6558599a8423512cd168bfe3c0ce0ed1b1fb9c Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 14 Dec 2017 15:45:36 +0000 Subject: [PATCH] Fix --- commands/games/google-feud.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games/google-feud.js b/commands/games/google-feud.js index 56bce11d..acf863ef 100644 --- a/commands/games/google-feud.js +++ b/commands/games/google-feud.js @@ -67,7 +67,7 @@ module.exports = class GoogleFeudCommand extends Command { const suggestions = JSON.parse(text)[1]; if (!suggestions.length) return null; return suggestions - .filter(suggestion => suggestion !== question.toLowerCase()) + .filter(suggestion => suggestion.toLowerCase() !== question.toLowerCase()) .map(suggestion => suggestion.toLowerCase().replace(question.toLowerCase(), '').trim()); } };