Skip to content

Commit

Permalink
Reduced minimum bet to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
PieTw3lve committed Aug 1, 2024
1 parent e8112ae commit 34f89fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensions/economy/blackjack.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ async def view_check(self, ctx: miru.ViewContext) -> bool:

@plugin.command
@lightbulb.app_command_permissions(dm_enabled=False)
@lightbulb.option('bet', 'Number of coins you want to bet.', type=int, min_value=20, max_value=5000, required=True)
@lightbulb.option('bet', 'Number of coins you want to bet.', type=int, min_value=1, max_value=5000, required=True)
@lightbulb.command('blackjack', 'Try your luck in a game of Blackjack against a computer.', aliases=['bj'], pass_options=True)
@lightbulb.implements(lightbulb.SlashCommand)
async def blackjack(ctx: lightbulb.Context, bet: int) -> None:
Expand Down

0 comments on commit 34f89fa

Please sign in to comment.