From e77593b5d77604fec7a9fd659dded857f38da8bf Mon Sep 17 00:00:00 2001 From: Joinemm Date: Sat, 10 Jun 2023 19:31:27 +0300 Subject: [PATCH] make donate message 1 in 69 (nice) --- cogs/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/events.py b/cogs/events.py index 3a05072..402bd9b 100644 --- a/cogs/events.py +++ b/cogs/events.py @@ -64,7 +64,7 @@ async def on_command_completion(self, ctx: commands.Context): if ctx.guild is not None: await queries.save_command_usage(ctx) - if random.randint(1, 100) == 1 and not await queries.is_donator(ctx, ctx.author): + if random.randint(1, 69) == 1 and not await queries.is_donator(ctx, ctx.author): logger.info("Sending donation beg message") await util.send_donation_beg(ctx.channel)