Made say command color-consistent with pose. Resolves #538.
This commit is contained in:
parent
8af76ce669
commit
4ae65c98fb
1 changed files with 1 additions and 1 deletions
|
|
@ -366,7 +366,7 @@ class CmdSay(MuxCommand):
|
||||||
caller.msg('You say, "%s{n"' % speech)
|
caller.msg('You say, "%s{n"' % speech)
|
||||||
|
|
||||||
# Build the string to emit to neighbors.
|
# Build the string to emit to neighbors.
|
||||||
emit_string = '{c%s{n says, "%s{n"' % (caller.name,
|
emit_string = '%s says, "%s{n"' % (caller.name,
|
||||||
speech)
|
speech)
|
||||||
caller.location.msg_contents(emit_string,
|
caller.location.msg_contents(emit_string,
|
||||||
exclude=caller)
|
exclude=caller)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue