From 4bee4036a97892db2c52cf3b273005c06215cd70 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Sun, 25 May 2025 22:02:13 -0700 Subject: [PATCH] Shout, shout, let it all out --- commands/everyone.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/everyone.py b/commands/everyone.py index cef23e7..1a8ef42 100755 --- a/commands/everyone.py +++ b/commands/everyone.py @@ -113,7 +113,7 @@ class CmdSay(MuxCommand): """ key = "say" - aliases = ["speak", "yell", "exclaim", "scream", "ask", "reply", "respond", "\"", "'"] + aliases = ["speak", "shout", "yell", "exclaim", "scream", "ask", "reply", "respond", "\"", "'"] priority = 0 locks = "cmd:all()" rhs_split = ("=") @@ -171,6 +171,8 @@ class CmdSay(MuxCommand): if 'scream' in self.switches or self.cmdstring == 'scream': verb = 'scream' + elif 'shout' in self.switches or self.cmdstring == 'shout': + verb = 'shout' elif 'respond' in self.switches or self.cmdstring == 'respond': verb = 'respond' elif 'reply' in self.switches or self.cmdstring == 'reply':