diff --git a/src/mudlib/zmachine/zstring.py b/src/mudlib/zmachine/zstring.py index efdb482..a0e1217 100644 --- a/src/mudlib/zmachine/zstring.py +++ b/src/mudlib/zmachine/zstring.py @@ -64,7 +64,7 @@ class ZCharTranslator: DEFAULT_A0 = [ord(x) for x in "abcdefghijklmnopqrstuvwxyz"] DEFAULT_A1 = [ord(x) for x in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"] # A2 also has 0x6 as special char, so they start at 0x7. - DEFAULT_A2 = [ord(x) for x in "0123456789.,!?_#'\"/\\-:()"] + DEFAULT_A2 = [ord(x) for x in "\n0123456789.,!?_#'\"/\\-:()"] DEFAULT_A2_V5 = [ord(x) for x in "\n0123456789.,!?_#'\"/\\-:()"] ALPHA = (DEFAULT_A0, DEFAULT_A1, DEFAULT_A2)