From 4b37a4fd70438c37891782b3d4c83781488b696f Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Tue, 12 Oct 2021 23:32:09 +0200 Subject: [PATCH] CreatureText/Formating * removed excess escape on talker name --- includes/smartAI.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/smartAI.class.php b/includes/smartAI.class.php index b26dd525..1c3f8858 100644 --- a/includes/smartAI.class.php +++ b/includes/smartAI.class.php @@ -506,7 +506,7 @@ class SmartAI $this->quotes[$creatureId] = $quotes; if (!empty($this->quotes[$creatureId])) - $this->quotes[$creatureId]['src'] = Util::jsEscape(CreatureList::getName($creatureId)); + $this->quotes[$creatureId]['src'] = CreatureList::getName($creatureId); } private function getTalkSource(bool &$emptySource = false) : int