Take away the wager limit for roulette

This commit is contained in:
barelyprofessional
2026-02-19 20:58:05 -06:00
parent 1c2b36b8b2
commit 66f2af5f52

View File

@@ -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)