diff --git a/evennia/objects/objects.py b/evennia/objects/objects.py index f0508bd18f..96539afce8 100644 --- a/evennia/objects/objects.py +++ b/evennia/objects/objects.py @@ -612,7 +612,7 @@ class DefaultObject(with_metaclass(TypeclassBase, ObjectDB)): else: outmessage = inmessage - obj.msg(text=((outmessage,), outkwargs), from_obj=from_obj, **kwargs) + obj.msg(text=(outmessage, outkwargs), from_obj=from_obj, **kwargs) def move_to(self, destination, quiet=False, emit_to_obj=None, use_destination=True, to_none=False, move_hooks=True):