global ellie captcha patron add will show 12.5% of the time now, down from 20%, and be smaller

This commit is contained in:
Toastie 2025-01-31 13:16:12 +13:00
parent 491e9b5a6f
commit c6ea3fd36f
Signed by: toastie_t0ast
GPG key ID: 0861BE54AD481DC7
2 changed files with 4 additions and 4 deletions

View file

@ -168,9 +168,9 @@ public partial class Gambling : GamblingModule<GamblingService>
.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();

View file

@ -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();