This might do it

This commit is contained in:
lilyissillyyy
2025-10-12 18:05:01 -04:00
parent 59008c4aa0
commit f55314b890
+3 -3
View File
@@ -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;