Skip to content

Commit

Permalink
sheee
Browse files Browse the repository at this point in the history
  • Loading branch information
2vw committed Jul 27, 2024
1 parent b6b9274 commit 6a32722
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cogs/economy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ async def slots_game(ctx, amount: int):
msg = await ctx.reply(embed=embed)
prize = 0
if a == b == c == "7️⃣":
prize = 25_000_000
prize = amount * 500
else:
if a == b:
prize = emojis.get(a, 0) * 2 * amount
Expand Down
5 changes: 3 additions & 2 deletions json/data.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"uptime": 1708801585,
"uptime": 1722113286,
"bug": "01HQ9G6JK9ZCJMK2ZD845AR9WP",
"beta": "01HQ9Q6449A0PFQ5WT4Z61FJFB",
"admin": "01HQ9QYH9SK1JWADC93T4B978C",
Expand All @@ -8,5 +8,6 @@
"premium": "01HQ9MCH6R239XHPJGKVK2EC5E",
"contributor": "01HQ9QMBSY4ME2JK6TVQWWRKJ2",
"friend": "01HQ9R17P2JA33AB5PSYDRPT20",
"familyfriendly": "01HQ9R17P2JA33AB5PSYDRPT20"
"familyfriendly": "01HQ9R17P2JA33AB5PSYDRPT20",
"BETA_ID": "01HRMWPRM00769D3HWFSB6W2MH"
}
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,5 +802,5 @@ async def on_message_error(error: Exception, message):
print(e)

while True:
alive() #yeah blah blah stolen from old Mecha but hey, it works so why not copy and paste it, we're developers.
client.run(config['TOKEN'], bot=True, banner=False) # Replace with your token in config, config.json to be exact, for everyone else, you know what this does stop fucking stalling pls :).
alive() #yeah blah blah stolen from old Mecha but hey, it works
client.run(config['TOKEN'], bot=True, banner=False) # Replace with your token in config, config.json to be exact

0 comments on commit 6a32722

Please sign in to comment.