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)