From 78851e83d4babac3dfa78f4f670beb66af3254ca Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 12 Oct 2017 02:20:21 +0000 Subject: [PATCH] Akinator speaks this --- commands/games/akinator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games/akinator.js b/commands/games/akinator.js index beddfef2..46fa4cfa 100644 --- a/commands/games/akinator.js +++ b/commands/games/akinator.js @@ -61,7 +61,7 @@ module.exports = class AkinatorCommand extends Command { if (!msgs.size) return msg.say('I guess your silence means I have won.'); const response = msgs.first().content.toLowerCase(); if (!['yes', 'no'].includes(response)) return msg.say('I guess I\'m right then!'); - return msg.say(response === 'yes' ? 'Another win for me!' : 'Bravo, you have defeated me.'); + return msg.say(response === 'yes' ? 'Guessed right one more time!' : 'Bravo, you have defeated me.'); } catch (err) { this.sessions.delete(msg.channel.id); return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);