mirror of
https://github.com/evennia/evennia.git
synced 2026-03-25 09:16:32 +01:00
BlauFeuer's Bug. @Cemit/sendername not functioning.
if "sendername" in self.switches:
message = "%s: %s" % (self.key, message)
Should read: message = "%s: %s" % (self.caller.key, message)
Not functioning as intended. Credit goes to BlauFeuer.
This commit is contained in:
parent
0b3314fa20
commit
bc04d5f99e
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue