dont look mbux-received to tiers, and instead just multiply by 500

master
Aevann 2023-10-13 15:31:01 +03:00
parent 89615a7a53
commit 5496e2b6bc
2 changed files with 1 additions and 11 deletions

View File

@ -585,16 +585,6 @@ TIER_TO_MONEY = {
8: 500,
}
TIER_TO_MBUX = {
2: 2500,
3: 5000,
4: 10000,
5: 25000,
6: 50000,
7: 100000,
8: 250000,
}
BADGE_BLACKLIST = { # only grantable by admins higher than PERMS['IGNORE_BADGE_BLACKLIST']
1, 2, 6, 10, 11, 12, # Alpha, Verified Email, Beta, Recruiter x3
16, 17, 143, 21, 22, 23, 24, 25, 26, 27, # Marsey Artist x3 / Patron Tiers

View File

@ -61,7 +61,7 @@ def claim_rewards_all_users():
tier = t
if transaction.amount <= money: break
marseybux += TIER_TO_MBUX[tier]
marseybux += transaction.amount * 500
if tier > highest_tier:
highest_tier = tier
transaction.claimed = True