From 5999ff6e555d6459f94153ac1228e05aea04500e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 22 Apr 2024 16:33:56 -0400 Subject: [PATCH] Fix --- structures/Akinator.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/structures/Akinator.js b/structures/Akinator.js index f093ca81..50114f01 100644 --- a/structures/Akinator.js +++ b/structures/Akinator.js @@ -30,11 +30,11 @@ class Akinator { this.session = text.match(/session: '(.+)'/)[1]; this.signature = text.match(/signature: '(.+)'/)[1]; this.answers = [ - text.match(/(.+)<\/a>/)[1], - text.match(/(.+)<\/a>/)[1], - text.match(/(.+)<\/a>/)[1], - text.match(/(.+)<\/a>/)[1], - text.match(/(.+)<\/a>/)[1] + text.match(/(.+)<\/a>/)[1], + text.match(/(.+)<\/a>/)[1], + text.match(/(.+)<\/a>/)[1], + text.match(/(.+)<\/a>/)[1], + text.match(/(.+)<\/a>/)[1] ]; return this; }