From 96453e1de7191e2744caf3fa314f632d297c9bf9 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 19 May 2020 08:52:15 -0400 Subject: [PATCH] Fix --- 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 c182e75f..b66c37ec 100644 --- a/commands/games-sp/akinator.js +++ b/commands/games-sp/akinator.js @@ -32,7 +32,7 @@ module.exports = class AkinatorCommand extends Command { let win = false; let forceGuess = false; this.client.games.set(msg.channel.id, { name: this.name }); - while (!aki.guessCount || aki.guessCount < 3) { + while (aki.guessCount >= 3) { if (aki.progress >= 70 || forceGuess) { await aki.win(); const guess = aki.answers[0];