diff --git a/commands/games/akinator.js b/commands/games/akinator.js index b7aa310b..74da5f32 100644 --- a/commands/games/akinator.js +++ b/commands/games/akinator.js @@ -42,7 +42,7 @@ module.exports = class AkinatorCommand extends Command { break; } if (msgs.first().content.toLowerCase() === 'end') break; - ans = answers.indexOf(msgs.first().content.toLowerCase().replace(/(‘|’)/g, '\'')); + ans = answers.indexOf(msgs.first().content.toLowerCase()); } const guess = await this.finish(msg.channel); const embed = new MessageEmbed()