mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 23:36:30 +01:00
Removed an erroneous text-conversion in msg() that made it impossible to add custom text outputcommands. Resolves #986.
This commit is contained in:
parent
730d08e790
commit
dcbf2ed9c1
2 changed files with 0 additions and 2 deletions
|
|
@ -501,7 +501,6 @@ class DefaultObject(with_metaclass(TypeclassBase, ObjectDB)):
|
|||
except Exception:
|
||||
logger.log_trace()
|
||||
|
||||
text = None if text is None else str(text)
|
||||
kwargs["options"] = options
|
||||
|
||||
# relay to session(s)
|
||||
|
|
|
|||
|
|
@ -416,7 +416,6 @@ class DefaultPlayer(with_metaclass(TypeclassBase, PlayerDB)):
|
|||
except Exception:
|
||||
pass
|
||||
|
||||
text = None if text is None else str(text)
|
||||
kwargs["options"] = options
|
||||
|
||||
# session relay
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue