From 4ae65c98fb69e5fd75f1c6db9c8bb41b3bfb605b Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 7 Jul 2014 22:10:08 +0200 Subject: [PATCH] Made say command color-consistent with pose. Resolves #538. --- src/commands/default/general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/default/general.py b/src/commands/default/general.py index c7366275b2..d2d65f81fa 100644 --- a/src/commands/default/general.py +++ b/src/commands/default/general.py @@ -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)