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"
|
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':
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue