Remove "!" from help strings

This commit is contained in:
jesopo 2019-06-18 17:33:42 +01:00
parent 00d7da9967
commit 77ea95f0a9
3 changed files with 3 additions and 3 deletions

View file

@ -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" %

View file

@ -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()

View file

@ -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!")