coollsd commited on
Commit
419fd00
1 Parent(s): efac8b2

Update cash.py

Browse files
Files changed (1) hide show
  1. cash.py +3 -3
cash.py CHANGED
@@ -3,7 +3,7 @@ from discord import app_commands
3
 
4
  user_cash = {}
5
 
6
- @app_commands.command(name="cash", description="Check your current cash balance or claim free cash")
7
  async def cash(interaction: discord.Interaction):
8
  user_id = interaction.user.id
9
  balance = user_cash.get(user_id, 0)
@@ -11,11 +11,11 @@ async def cash(interaction: discord.Interaction):
11
  if balance == 0:
12
  user_cash[user_id] = 100
13
  balance = 100
14
- message = "You've claimed your free $100! Your current balance is $100.00"
15
  else:
16
  message = f"Your current balance is ${balance:.2f}"
17
 
18
  embed = discord.Embed(title="Cash Balance", description=message, color=0x787878)
19
- embed.set_footer(text="Use /dice to bet your cash!")
20
 
21
  await interaction.response.send_message(embed=embed)
 
3
 
4
  user_cash = {}
5
 
6
+ @app_commands.command(name="cash", description="check the current cash u got")
7
  async def cash(interaction: discord.Interaction):
8
  user_id = interaction.user.id
9
  balance = user_cash.get(user_id, 0)
 
11
  if balance == 0:
12
  user_cash[user_id] = 100
13
  balance = 100
14
+ message = "you are too poor so here is $100 free"
15
  else:
16
  message = f"Your current balance is ${balance:.2f}"
17
 
18
  embed = discord.Embed(title="Cash Balance", description=message, color=0x787878)
19
+ embed.set_footer(text="Use /dice to bet your cash or use pet roll to get more cash!")
20
 
21
  await interaction.response.send_message(embed=embed)