2
0
mirror of https://github.com/Nick80835/microbot synced 2025-08-31 06:26:04 +00:00

hidden fun

This commit is contained in:
Nick80835
2020-06-26 19:34:15 -04:00
parent 9570d3fcd3
commit 13635a9021

View File

@@ -24,19 +24,19 @@ moo_answers = [
]
@ldr.add(f"{bot_name}(,|) (are|am|is|will|should|can|have|was|were|does|did|may|do)", simple_pattern=True)
@ldr.add(f"{bot_name}(,|) (are|am|is|will|should|can|have|was|were|does|did|may|do)", simple_pattern=True, hide_help=True)
async def ask_bot(event):
if event.args:
await event.reply(choice(yesno_answers))
@ldr.add(f"let the bodies hit the", simple_pattern=True)
@ldr.add(f"let the bodies hit the", simple_pattern=True, hide_help=True)
async def floor(event):
if not event.args:
await event.reply("FLOOOOOOOOOOOOOOOOOOR")
@ldr.add(f"moo", simple_pattern=True)
@ldr.add(f"moo", simple_pattern=True, hide_help=True)
async def moo(event):
if not event.args:
await event.reply(choice(moo_answers))