From 17f49c4aea9679aba318c5490d3fa77dca5fd8b7 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sun, 12 Oct 2025 18:48:25 -0400 Subject: [PATCH] Fix????? --- structures/Akinator.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/structures/Akinator.js b/structures/Akinator.js index be386663..797cabb7 100644 --- a/structures/Akinator.js +++ b/structures/Akinator.js @@ -89,7 +89,7 @@ class Akinator { } if (!correct && keepGoing) { const params = new URLSearchParams(); - params.append('step', this.currentStep.toString()); + params.append('step', (this.currentStep + 1).toString()); params.append('sid', '1'); params.append('cm', this.childMode); params.append('progression', this.progress); @@ -100,7 +100,6 @@ class Akinator { .post(`https://${this.region}.akinator.com/exclude`) .send(params.toString(), true) .set({ - Accept: 'application/json', 'Content-Length': params.toString().length, 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8', });