From de18cb4bbd9838c3e5145ac13583f1068e9e0c31 Mon Sep 17 00:00:00 2001 From: Mc-muffin <8714476+Mc-muffin@users.noreply.github.com> Date: Thu, 27 Jul 2023 22:01:28 -0500 Subject: [PATCH] Update ToolsTOR.py --- pythonlib/games/ToolsTOR.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pythonlib/games/ToolsTOR.py b/pythonlib/games/ToolsTOR.py index f6a4f8f..8e69b0f 100644 --- a/pythonlib/games/ToolsTOR.py +++ b/pythonlib/games/ToolsTOR.py @@ -353,6 +353,10 @@ class ToolsTOR(ToolsTales): finalText += ("\n") continue + if b == 0x2: + finalText += "<" + tags.get(b, f"{b:02X}") + ">" + continue + # ASCII text if chr(b) in self.PRINTABLE_CHARS: finalText += chr(b)