From c12306ff726b4f6f12c893d14c26506764f073d1 Mon Sep 17 00:00:00 2001 From: CloudKeeper1 Date: Tue, 28 Mar 2017 21:36:33 +1100 Subject: [PATCH] Adjustments to argument capitalisation. Adjustments to argument capitalisation. --- evennia/commands/default/general.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/commands/default/general.py b/evennia/commands/default/general.py index f6323fda1..f72b3968d 100644 --- a/evennia/commands/default/general.py +++ b/evennia/commands/default/general.py @@ -417,7 +417,7 @@ class CmdSay(COMMAND_DEFAULT_CLASS): # Build the string to emit to neighbors. emit_string = '%s says, "%s|n"' % (caller.name, speech) - caller.location.msg_contents((emit_string, {"type": "say"}), + caller.location.msg_contents((emit_string, {"type": "Say"}), exclude=caller, from_obj=caller) @@ -503,7 +503,7 @@ class CmdPose(COMMAND_DEFAULT_CLASS): self.caller.msg(msg) else: msg = "%s%s" % (self.caller.name, self.args) - self.caller.location.msg_contents((msg, {"type": "pose"}), + self.caller.location.msg_contents((msg, {"type": "Pose"}), from_obj=self.caller)