diff --git a/evennia/commands/default/comms.py b/evennia/commands/default/comms.py index fd11d8a840..0c30f47ffb 100644 --- a/evennia/commands/default/comms.py +++ b/evennia/commands/default/comms.py @@ -441,7 +441,7 @@ class CmdCemit(MuxPlayerCommand): return message = self.rhs if "sendername" in self.switches: - message = "%s: %s" % (self.key, message) + message = "%s: %s" % (self.caller.key, message) channel.msg(message) if not "quiet" in self.switches: string = "Sent to channel %s: %s" % (channel.key, message)