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
|
return
|
||||||
message = self.rhs
|
message = self.rhs
|
||||||
if "sendername" in self.switches:
|
if "sendername" in self.switches:
|
||||||
message = "%s: %s" % (self.key, message)
|
message = "%s: %s" % (self.caller.key, message)
|
||||||
channel.msg(message)
|
channel.msg(message)
|
||||||
if not "quiet" in self.switches:
|
if not "quiet" in self.switches:
|
||||||
string = "Sent to channel %s: %s" % (channel.key, message)
|
string = "Sent to channel %s: %s" % (channel.key, message)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue