Shout, shout, let it all out
This commit is contained in:
parent
eea40a2e7c
commit
4bee4036a9
1 changed files with 3 additions and 1 deletions
|
|
@ -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':
|
||||
|
|
|
|||
Loading…
Reference in a new issue