remotes/1693045480750635534/spooky-22
Aevann1 2021-11-24 14:24:44 +02:00
parent 2d4e0816d4
commit 8685bb307c
3 changed files with 9 additions and 13 deletions

View File

@ -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'

View File

@ -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).")

View File

@ -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).")