mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
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:
@@ -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();
|
||||||
|
@@ -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();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user