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

This commit is contained in:
Kwoth
2025-01-30 10:52:38 +00:00
parent 0fdccea31c
commit cf1d950308
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"); .File(stream, "timely.png");
#if GLOBAL_NADEKO #if GLOBAL_NADEKO
if (_rng.Next(0, 5) == 0) if (_rng.Next(0, 8) == 0)
toSend = toSend toSend = toSend
.Confirm("[Sub on Patreon](https://patreon.com/nadekobot) to remove captcha."); .Text("*[Sub on Patreon](https://patreon.com/nadekobot) to remove captcha.*");
#endif #endif
var captchaMessage = await toSend.SendAsync(); var captchaMessage = await toSend.SendAsync();

View File

@@ -33,9 +33,9 @@ public partial class Games
.File(stream, "timely.png"); .File(stream, "timely.png");
#if GLOBAL_NADEKO #if GLOBAL_NADEKO
if (_rng.Next(0, 5) == 0) if (_rng.Next(0, 8) == 0)
toSend = toSend toSend = toSend
.Confirm("[Sub on Patreon](https://patreon.com/nadekobot) to remove captcha."); .Text("*[Sub on Patreon](https://patreon.com/nadekobot) to remove captcha.*");
#endif #endif
var captcha = await toSend.SendAsync(); var captcha = await toSend.SendAsync();