Spaces:
Building
Building
Update roulette.py
Browse files- roulette.py +1 -1
roulette.py
CHANGED
@@ -63,7 +63,7 @@ async def roulette(interaction: discord.Interaction, bet: int, choice: str):
|
|
63 |
await interaction.response.send_message(f"You don't have enough cash. Your current balance is ${balance:.2f}")
|
64 |
return
|
65 |
|
66 |
-
embed = discord.Embed(title="Roulette
|
67 |
embed.add_field(name="Your Bet", value=f"Choice: {choice}", inline=False)
|
68 |
embed.add_field(name="Current Balance", value=f"${balance:.2f}", inline=False)
|
69 |
|
|
|
63 |
await interaction.response.send_message(f"You don't have enough cash. Your current balance is ${balance:.2f}")
|
64 |
return
|
65 |
|
66 |
+
embed = discord.Embed(title="Roulette", description=f"{interaction.user.name} is betting ${bet:.2f}", color=0x787878)
|
67 |
embed.add_field(name="Your Bet", value=f"Choice: {choice}", inline=False)
|
68 |
embed.add_field(name="Current Balance", value=f"${balance:.2f}", inline=False)
|
69 |
|