Remove "!" from help strings
This commit is contained in:
parent
00d7da9967
commit
77ea95f0a9
3 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
@utils.hook("received.command.8ball", min_args=1)
|
@utils.hook("received.command.8ball", min_args=1)
|
||||||
def decide(selfs, event):
|
def decide(selfs, event):
|
||||||
"""
|
"""
|
||||||
:help: Ask the mystic 8ball a question!
|
:help: Ask the mystic 8ball a question
|
||||||
:usage: <question>
|
:usage: <question>
|
||||||
"""
|
"""
|
||||||
event["stdout"].write("You shake the magic ball... it says %s" %
|
event["stdout"].write("You shake the magic ball... it says %s" %
|
||||||
|
|
|
@ -9,7 +9,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
@utils.hook("received.command.roll", min_args=1)
|
@utils.hook("received.command.roll", min_args=1)
|
||||||
def roll_dice(self, event):
|
def roll_dice(self, event):
|
||||||
"""
|
"""
|
||||||
:help: Roll some dice, DND style!
|
:help: Roll some dice, DND style
|
||||||
:usage: [1-5]d[1-20]
|
:usage: [1-5]d[1-20]
|
||||||
"""
|
"""
|
||||||
roll = event["args_split"][0].lower()
|
roll = event["args_split"][0].lower()
|
||||||
|
|
|
@ -6,6 +6,6 @@ class Module(ModuleManager.BaseModule):
|
||||||
@utils.hook("received.command.ping")
|
@utils.hook("received.command.ping")
|
||||||
def pong(self, event):
|
def pong(self, event):
|
||||||
"""
|
"""
|
||||||
:help: Ping pong!
|
:help: Ping pong
|
||||||
"""
|
"""
|
||||||
event["stdout"].write("Pong!")
|
event["stdout"].write("Pong!")
|
||||||
|
|
Loading…
Reference in a new issue