From 66f2af5f521d1c1d0173e7f14c7e6a839a851af0 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 19 Feb 2026 20:58:05 -0600 Subject: [PATCH] Take away the wager limit for roulette --- KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs b/KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs index 9142d29..5ed7e54 100644 --- a/KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs @@ -155,15 +155,6 @@ public class RouletteCommand : ICommand return; } - decimal wagerLimit = 25; - if (wager > wagerLimit) - { - await botInstance.SendChatMessageAsync( - $"{user.FormatUsername()}, wagers are temporarily limited to {await wagerLimit.FormatKasinoCurrencyAsync()} during testing", - true, autoDeleteAfter: TimeSpan.FromSeconds(10)); - return; - } - // Parse and validate bet var betInfo = ParseBet(betStr); if (betInfo == null)