diff --git a/commands/games-sp/akinator.js b/commands/games-sp/akinator.js index 15667f8a..c0c0e034 100644 --- a/commands/games-sp/akinator.js +++ b/commands/games-sp/akinator.js @@ -119,9 +119,9 @@ module.exports = class AkinatorCommand extends Command { win = false; break; } else { - const exMsg = timesGuessed >= 3 || forceGuess ? 'I give up.' : 'I can keep going!'; - await msg.say(`Hmm... Is that so? ${exMsg}`); - if (timesGuessed >= 3 || forceGuess) { + if (timesGuessed < 3 && !forceGuess) { + await msg.say('Hmm... Is that so? I can keep going!'); + } else { win = true; break; } diff --git a/package.json b/package.json index b8830de4..625ba3be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "119.24.1", + "version": "119.24.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {