Shout, shout, let it all out

This commit is contained in:
Howard Abrams 2025-05-25 22:02:13 -07:00
parent eea40a2e7c
commit 4bee4036a9

View file

@ -113,7 +113,7 @@ class CmdSay(MuxCommand):
""" """
key = "say" key = "say"
aliases = ["speak", "yell", "exclaim", "scream", "ask", "reply", "respond", "\"", "'"] aliases = ["speak", "shout", "yell", "exclaim", "scream", "ask", "reply", "respond", "\"", "'"]
priority = 0 priority = 0
locks = "cmd:all()" locks = "cmd:all()"
rhs_split = ("=") rhs_split = ("=")
@ -171,6 +171,8 @@ class CmdSay(MuxCommand):
if 'scream' in self.switches or self.cmdstring == 'scream': if 'scream' in self.switches or self.cmdstring == 'scream':
verb = 'scream' verb = 'scream'
elif 'shout' in self.switches or self.cmdstring == 'shout':
verb = 'shout'
elif 'respond' in self.switches or self.cmdstring == 'respond': elif 'respond' in self.switches or self.cmdstring == 'respond':
verb = 'respond' verb = 'respond'
elif 'reply' in self.switches or self.cmdstring == 'reply': elif 'reply' in self.switches or self.cmdstring == 'reply':