From c6ea3fd36f93095b4e9d9ba02aa819a47fa8325f Mon Sep 17 00:00:00 2001 From: Toastie Date: Fri, 31 Jan 2025 13:16:12 +1300 Subject: [PATCH] global ellie captcha patron add will show 12.5% of the time now, down from 20%, and be smaller --- src/EllieBot/Modules/Gambling/Gambling.cs | 4 ++-- src/EllieBot/Modules/Games/Fish/FishCommands.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/EllieBot/Modules/Gambling/Gambling.cs b/src/EllieBot/Modules/Gambling/Gambling.cs index 7d0459b..2654e2d 100644 --- a/src/EllieBot/Modules/Gambling/Gambling.cs +++ b/src/EllieBot/Modules/Gambling/Gambling.cs @@ -168,9 +168,9 @@ public partial class Gambling : GamblingModule .File(stream, "timely.png"); #if GLOBAL_ELLIE - if (_rng.Next(0, 5) == 0) + if (_rng.Next(0, 8) == 0) toSend = toSend - .Confirm("[Sub on Patreon](https://patreon.com/elliebot) to remove captcha."); + .Text("*[Sub on Patreon](https://patreon.com/elliebot) to remove captcha.*"); #endif var captchaMessage = await toSend.SendAsync(); diff --git a/src/EllieBot/Modules/Games/Fish/FishCommands.cs b/src/EllieBot/Modules/Games/Fish/FishCommands.cs index 903b58a..d89c289 100644 --- a/src/EllieBot/Modules/Games/Fish/FishCommands.cs +++ b/src/EllieBot/Modules/Games/Fish/FishCommands.cs @@ -33,9 +33,9 @@ public partial class Games .File(stream, "timely.png"); #if GLOBAL_ELLIE - if (_rng.Next(0, 5) == 0) + if (_rng.Next(0, 8) == 0) toSend = toSend - .Confirm("[Sub on Patreon](https://patreon.com/elliebot) to remove captcha."); + .Text("*[Sub on Patreon](https://patreon.com/elliebot) to remove captcha.*"); #endif var captcha = await toSend.SendAsync();