diff --git a/evennia/server/portal/ttype.py b/evennia/server/portal/ttype.py index 1f519f2d53..7cc41cddf6 100644 --- a/evennia/server/portal/ttype.py +++ b/evennia/server/portal/ttype.py @@ -142,7 +142,7 @@ class Ttype(object): elif self.ttype_step == 3: # the MTTS bitstring identifying term capabilities if option.startswith("MTTS"): - option = option.split(" ")[1] + option = option[4:].strip() if option.isdigit(): # a number - determine the actual capabilities option = int(option)