Disable wager limit check in PlinkoCommand (#49)

Comment out wager limit check for Plinko command.
This commit is contained in:
alogindtractor
2026-01-14 17:55:33 -08:00
committed by GitHub
parent 60be8d45d6
commit 071136f910

View File

@@ -123,13 +123,13 @@ public class PlinkoCommand : ICommand
return;
}
var wager = Convert.ToDecimal(amount.Value);
if (wager > 1)
/*if (wager > 1)
{
await botInstance.SendChatMessageAsync(
$"{user.FormatUsername()}, plinko is currently limited to 1 KKK wagers while bugs are ironed out.", true,
autoDeleteAfter: TimeSpan.FromSeconds(15));
return;
}
}*/
var gambler = await Money.GetGamblerEntityAsync(user.Id, ct: ctx);
if (gambler == null)
throw new InvalidOperationException($"Caught a null when retrieving gambler for {user.KfUsername}");