From 4c4919c992e32784163ffa8b55cd06bc308facf9 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 18 Apr 2021 09:58:25 -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 9352ad7a..83ba2e6b 100644 --- a/commands/games-sp/akinator.js +++ b/commands/games-sp/akinator.js @@ -81,7 +81,7 @@ module.exports = class AkinatorCommand extends Command { win = 'time'; break; } - const choice = msgs.first().content.toLowerCase(); + const choice = msgs.first().content.toLowerCase().replace(/’/g, '\''); if (choice === 'end') { forceGuess = true; } else if (choice === 'back') {