2
0
mirror of https://github.com/Nick80835/microbot synced 2025-08-29 13:38:55 +00:00
This commit is contained in:
Nick80835 2020-09-16 17:47:41 -04:00
parent 093ab081bf
commit 5cef7b79c0

View File

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