mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
Take away the wager limit for roulette
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user