Spaces:
Building
Building
Update roulette.py
Browse files- roulette.py +4 -1
roulette.py
CHANGED
@@ -40,7 +40,10 @@ class RouletteGame(discord.ui.View):
|
|
40 |
await interaction.response.edit_message(embed=embed, view=None)
|
41 |
|
42 |
@app_commands.command(name="roulette", description="Play roulette and bet")
|
43 |
-
@app_commands.describe(
|
|
|
|
|
|
|
44 |
@app_commands.choices(
|
45 |
choice=[
|
46 |
app_commands.Choice(name="Red", value="red"),
|
|
|
40 |
await interaction.response.edit_message(embed=embed, view=None)
|
41 |
|
42 |
@app_commands.command(name="roulette", description="Play roulette and bet")
|
43 |
+
@app_commands.describe(
|
44 |
+
bet="The amount of money to bet.",
|
45 |
+
choice="Choose 'red', 'black', 'green', or a number between 0 and 36."
|
46 |
+
)
|
47 |
@app_commands.choices(
|
48 |
choice=[
|
49 |
app_commands.Choice(name="Red", value="red"),
|