mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 14:26:30 +01:00
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)
|
||||
|
||||
# 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)
|
||||
caller.location.msg_contents(emit_string,
|
||||
exclude=caller)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue