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

change: increased todo and archive limits slightly
This commit is contained in:
Kwoth
2025-01-30 10:52:38 +00:00
parent 0fdccea31c
commit 42fc0c263d
6 changed files with 44 additions and 12 deletions

View File

@@ -168,9 +168,9 @@ public partial class Gambling : GamblingModule<GamblingService>
.File(stream, "timely.png");
#if GLOBAL_NADEKO
if (_rng.Next(0, 5) == 0)
if (_rng.Next(0, 8) == 0)
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
var captchaMessage = await toSend.SendAsync();