2
0
mirror of https://github.com/Nick80835/microbot synced 2025-09-05 08:55:51 +00:00
This commit is contained in:
Nick80835
2020-09-16 17:37:39 -04:00
parent 64e2b82054
commit ed3304c75b

View File

@@ -77,6 +77,14 @@ async def bruh_moment(event):
await event.reply("moment")
@ldr.add(f"bab", hide_help=True, fun=True)
async def bab(event):
if event.is_reply:
await (await event.get_reply_message()).reply("You've been babbed!")
else:
await event.reply("Who am I supposed to bab?")
@ldr.add(f"(^| )moo( |$)", raw_pattern=True, hide_help=True, chance=25, fun=True)
async def moo(event):
await event.reply(choice(moo_answers))