From 6161bcfd1514c13259fe197647f1d5e492f715c1 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Fri, 18 Apr 2025 12:53:13 -0700 Subject: [PATCH] 1 in 1k chance to repely with the word cum --- app/bot.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/bot.py b/app/bot.py index c84dd521..d02c65dc 100755 --- a/app/bot.py +++ b/app/bot.py @@ -92,6 +92,14 @@ async def convert_heic_to_jpg(ctx): return +@bot.listen("on_message") +async def reply_with_the_word_cum(ctx): + if ctx.author.id == bot.user.id: + return + if random.randint(1, 1000) == 1: + await ctx.reply("cum") + + @bot.listen("on_message") async def fix_social_media_links(ctx): headers = {"Cache-Control": "no-store"}