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()); } };