feat: add fun module

This commit is contained in:
2025-01-09 16:53:28 -05:00
parent 23c29e1fa0
commit c80b926b35
3 changed files with 11 additions and 0 deletions

7
fun.py Normal file
View File

@@ -0,0 +1,7 @@
import random
async def on_message(message):
if "gn" in message.content:
if random.random() < 0.01:
await message.add_reaction(random.choice(["💤", "😪", "😴", "🛌"]))