From 08089061c40cdd437f5c4ec03e1c190e5658100f Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sun, 12 Oct 2025 17:55:45 -0400 Subject: [PATCH] Interesting --- structures/Akinator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/structures/Akinator.js b/structures/Akinator.js index 19848648..7df9bc38 100644 --- a/structures/Akinator.js +++ b/structures/Akinator.js @@ -88,7 +88,7 @@ class Akinator { return this; } if (!correct && keepGoing) { - const { body } = await request + const { body, text } = await request .post(`https://${this.region}.akinator.com/exclude`) .send({ step: this.currentStep.toString(), @@ -98,7 +98,7 @@ class Akinator { session: this.session, signature: this.signature }); - console.log(body); + console.log(text); this.guessed = null; this.stepLastProposition = body.step; this.progress = body.progression;