CreatureText/Formating

* removed excess escape on talker name
This commit is contained in:
Sarjuuk 2021-10-12 23:32:09 +02:00
parent c665062faa
commit 4b37a4fd70

View file

@ -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