Made say command color-consistent with pose. Resolves #538.

This commit is contained in:
Griatch 2014-07-07 22:10:08 +02:00
parent 8af76ce669
commit 4ae65c98fb

View file

@ -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)