diff --git a/src/NadekoBot/Modules/Gambling/Gambling.cs b/src/NadekoBot/Modules/Gambling/Gambling.cs index 6b1f9953e..865879851 100644 --- a/src/NadekoBot/Modules/Gambling/Gambling.cs +++ b/src/NadekoBot/Modules/Gambling/Gambling.cs @@ -168,9 +168,9 @@ public partial class Gambling : GamblingModule .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(); diff --git a/src/NadekoBot/Modules/Games/Fish/FishCommands.cs b/src/NadekoBot/Modules/Games/Fish/FishCommands.cs index 026d0353f..56e52b76c 100644 --- a/src/NadekoBot/Modules/Games/Fish/FishCommands.cs +++ b/src/NadekoBot/Modules/Games/Fish/FishCommands.cs @@ -33,9 +33,9 @@ public partial class Games .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 captcha = await toSend.SendAsync();