10 lines
259 B
Python
10 lines
259 B
Python
import random
|
|
|
|
import commands
|
|
|
|
|
|
async def on_message(message):
|
|
if "gn" in commands.tokenize(message.content, remove_prefix=False):
|
|
if random.random() < 0.01:
|
|
await message.add_reaction(random.choice(["💤", "😪", "😴", "🛌"]))
|