Support Child Mode in Akinator

This commit is contained in:
Dragon Fire
2020-07-13 16:52:14 -04:00
parent 9c3b9263b3
commit b042db6449
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ module.exports = class AkinatorCommand extends Command {
const current = this.client.games.get(msg.channel.id);
if (current) return msg.reply(`Please wait until the current game of \`${current.name}\` is finished.`);
try {
const aki = new Aki(region);
const aki = new Aki(region, !msg.channel.nsfw);
let ans = null;
let win = false;
let timesGuessed = 0;