From c3b46b2351a4341c560ad08bc61cc080a67d3345 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 20 May 2020 09:41:57 -0400 Subject: [PATCH] Fix Lint --- commands/games-sp/akinator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/akinator.js b/commands/games-sp/akinator.js index 0e400630..6f31c174 100644 --- a/commands/games-sp/akinator.js +++ b/commands/games-sp/akinator.js @@ -81,7 +81,7 @@ module.exports = class AkinatorCommand extends Command { timesGuessed++; guessResetNum += 10; await aki.win(); - const guess = aki.answers.filter(guess => !guessBlacklist.includes(guess.id))[0]; + const guess = aki.answers.filter(g => !guessBlacklist.includes(g.id))[0]; if (!guess) { await msg.say('I can\'t think of anyone.'); win = true;