From 2d283c2f7a977dd4cb9be9831d8e4e82171c2e0c Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Tue, 13 May 2025 21:00:50 -0700 Subject: [PATCH] Fix a 'say' command bug --- commands/everyone.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/everyone.py b/commands/everyone.py index 9b79052..ad4dcb6 100755 --- a/commands/everyone.py +++ b/commands/everyone.py @@ -193,7 +193,8 @@ class CmdSay(MuxCommand): targets = [item for item in self.caller.location.contents if item != self.caller] to_whom = chars_list(self.lhs, verb) if 'to' in self.switches else '' full_speech = f"/Me {adverb}{verb}s{to_whom}, \"{for_others}\"" - send_emote(self.caller, targets, full_speech, msg_type="say", anonymous_add=None, quiet=True) + # logger.info(f"send_emote('{self.caller}', {targets}, '{full_speech}', quiet=True") + send_emote(self.caller, targets, full_speech, msg_type="say", anonymous_add=None)