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)