From f55314b8900ce3d85a0d2624c1e985b332bae5e0 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sun, 12 Oct 2025 18:05:01 -0400 Subject: [PATCH] This might do it --- structures/Akinator.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/structures/Akinator.js b/structures/Akinator.js index 3d660067..e29080a9 100644 --- a/structures/Akinator.js +++ b/structures/Akinator.js @@ -88,7 +88,7 @@ class Akinator { return this; } if (!correct && keepGoing) { - const { body, text } = await request + const { body } = await request .post(`https://${this.region}.akinator.com/exclude`) .attach({ step: this.currentStep.toString(), @@ -96,9 +96,9 @@ class Akinator { cm: this.childMode, progression: this.progress, session: this.session, - signature: this.signature + signature: this.signature, + forward_answer: '1' }); - console.log(text); this.guessed = null; this.stepLastProposition = body.step; this.progress = body.progression;