Update ToolsTOR.py

This commit is contained in:
Mc-muffin
2023-07-27 22:01:28 -05:00
parent c71d7d7663
commit de18cb4bbd

View File

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