diff --git a/files/helpers/const.py b/files/helpers/const.py index 2d3f1b5fb..a4aad8e91 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -214,23 +214,23 @@ BADGES = { }, 21: { 'name': 'Paypig', - 'description': 'Contributed at least $5/month' + 'description': 'Contributed at least $5' }, 22: { 'name': 'Renthog', - 'description': 'Contributed at least $10/month' + 'description': 'Contributed at least $10' }, 23: { 'name': 'Landchad', - 'description': 'Contributed at least $20/month' + 'description': 'Contributed at least $20' }, 24: { 'name': 'Terminally online turboautist', - 'description': 'Contributed at least $50/month' + 'description': 'Contributed at least $50' }, 25: { - 'name': 'Footpig', - 'description': 'Contributed at least $100/month' + 'name': 'Rich Bich', + 'description': 'Contributed at least $100' }, 26: { 'name': 'Agendaposter', @@ -240,10 +240,6 @@ BADGES = { 'name': 'Lolcow', 'description': 'Beautiful and valid milk provider' }, - 28: { - 'name': 'Rich Bich', - 'description': 'Contributed $500' - }, 58: { 'name': 'Diamond Recruiter', 'description': 'Recruited 1000 friends to join Drama' diff --git a/files/routes/admin.py b/files/routes/admin.py index 4b6ff4595..43bae14f8 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -201,7 +201,7 @@ def monthly(v): elif u.patron == 2: procoins = 5000 elif u.patron == 3: procoins = 10000 elif u.patron == 4: procoins = 25000 - elif u.patron == 5 or u.patron == 8: procoins = 50000 + elif u.patron == 5: procoins = 50000 u.procoins += procoins send_notification(u.id, f"You were given {procoins} Marseybux! You can use them to buy awards in the [shop](/shop).") diff --git a/files/routes/settings.py b/files/routes/settings.py index e06834f40..e67fa212b 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -28,7 +28,7 @@ tiers={ "(Renthog)": 2, "(Landchad)": 3, "(Terminally online turboautist)": 4, - "(Footpig)": 5, + "(Rich Bich)": 5, } @app.post("/settings/removebackground") @@ -508,7 +508,7 @@ def gumroad(v): elif v.patron == 2: procoins = 5000 elif v.patron == 3: procoins = 10000 elif v.patron == 4: procoins = 25000 - elif v.patron == 5 or v.patron == 8: procoins = 50000 + elif v.patron == 5: procoins = 50000 v.procoins += procoins send_notification(v.id, f"You were given {procoins} Marseybux! You can use them to buy awards in the [shop](/shop).")