From e8aa75b084566ac5205aff08d5059fac5b721205 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sun, 24 Aug 2025 10:43:47 -0400 Subject: [PATCH] Fix Akinator --- package.json | 2 +- structures/Akinator.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 79a4284b..47756cc4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "153.1.0", + "version": "153.1.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": { diff --git a/structures/Akinator.js b/structures/Akinator.js index 87eb3905..2e7864d2 100644 --- a/structures/Akinator.js +++ b/structures/Akinator.js @@ -31,11 +31,11 @@ class Akinator { this.session = text.match(/session: '(.+)'/)[1]; this.signature = text.match(/signature: '(.+)'/)[1]; this.answers = [ - decodeHTML(text.match(/(.+)<\/a>/)[1]), - decodeHTML(text.match(/(.+)<\/a>/)[1]), - decodeHTML(text.match(/(.+)<\/a>/)[1]), - decodeHTML(text.match(/(.+)<\/a>/)[1]), - decodeHTML(text.match(/(.+)<\/a>/)[1]) + decodeHTML(text.match(/(.+)<\/a>/)[1]), + decodeHTML(text.match(/(.+)<\/a>/)[1]), + decodeHTML(text.match(/(.+)<\/a>/)[1]), + decodeHTML(text.match(/(.+)<\/a>/)[1]), + decodeHTML(text.match(/(.+)<\/a>/)[1]) ]; return this; }