Update 'tilderadio.py'

Add paymybills command
This commit is contained in:
dokuja 2020-10-04 04:38:16 +00:00
parent 2d967feac4
commit 8da0d843ba
1 changed files with 4 additions and 0 deletions

View File

@ -300,6 +300,10 @@ class Module(ModuleManager.BaseModule):
@utils.kwarg("help", "get a random tilderadio slogan")
def slogan(self, event):
event["stdout"].write(random.choice(SLOGANS))
@utils.hook("received.command.paymybills")
def paymybills(self, event):
event["stdout"].write("whaddya mean?! i'm broker than you!")
@utils.hook("received.command.toot")
@utils.kwarg("require_mode", "v")