fdsfsd
This commit is contained in:
parent
b02e5d103e
commit
734f707fdf
3 changed files with 9 additions and 13 deletions
|
@ -214,23 +214,23 @@ BADGES = {
|
||||||
},
|
},
|
||||||
21: {
|
21: {
|
||||||
'name': 'Paypig',
|
'name': 'Paypig',
|
||||||
'description': 'Contributed at least $5/month'
|
'description': 'Contributed at least $5'
|
||||||
},
|
},
|
||||||
22: {
|
22: {
|
||||||
'name': 'Renthog',
|
'name': 'Renthog',
|
||||||
'description': 'Contributed at least $10/month'
|
'description': 'Contributed at least $10'
|
||||||
},
|
},
|
||||||
23: {
|
23: {
|
||||||
'name': 'Landchad',
|
'name': 'Landchad',
|
||||||
'description': 'Contributed at least $20/month'
|
'description': 'Contributed at least $20'
|
||||||
},
|
},
|
||||||
24: {
|
24: {
|
||||||
'name': 'Terminally online turboautist',
|
'name': 'Terminally online turboautist',
|
||||||
'description': 'Contributed at least $50/month'
|
'description': 'Contributed at least $50'
|
||||||
},
|
},
|
||||||
25: {
|
25: {
|
||||||
'name': 'Footpig',
|
'name': 'Rich Bich',
|
||||||
'description': 'Contributed at least $100/month'
|
'description': 'Contributed at least $100'
|
||||||
},
|
},
|
||||||
26: {
|
26: {
|
||||||
'name': 'Agendaposter',
|
'name': 'Agendaposter',
|
||||||
|
@ -240,10 +240,6 @@ BADGES = {
|
||||||
'name': 'Lolcow',
|
'name': 'Lolcow',
|
||||||
'description': 'Beautiful and valid milk provider'
|
'description': 'Beautiful and valid milk provider'
|
||||||
},
|
},
|
||||||
28: {
|
|
||||||
'name': 'Rich Bich',
|
|
||||||
'description': 'Contributed $500'
|
|
||||||
},
|
|
||||||
58: {
|
58: {
|
||||||
'name': 'Diamond Recruiter',
|
'name': 'Diamond Recruiter',
|
||||||
'description': 'Recruited 1000 friends to join Drama'
|
'description': 'Recruited 1000 friends to join Drama'
|
||||||
|
|
|
@ -201,7 +201,7 @@ def monthly(v):
|
||||||
elif u.patron == 2: procoins = 5000
|
elif u.patron == 2: procoins = 5000
|
||||||
elif u.patron == 3: procoins = 10000
|
elif u.patron == 3: procoins = 10000
|
||||||
elif u.patron == 4: procoins = 25000
|
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
|
u.procoins += procoins
|
||||||
send_notification(u.id, f"You were given {procoins} Marseybux! You can use them to buy awards in the [shop](/shop).")
|
send_notification(u.id, f"You were given {procoins} Marseybux! You can use them to buy awards in the [shop](/shop).")
|
||||||
|
|
|
@ -28,7 +28,7 @@ tiers={
|
||||||
"(Renthog)": 2,
|
"(Renthog)": 2,
|
||||||
"(Landchad)": 3,
|
"(Landchad)": 3,
|
||||||
"(Terminally online turboautist)": 4,
|
"(Terminally online turboautist)": 4,
|
||||||
"(Footpig)": 5,
|
"(Rich Bich)": 5,
|
||||||
}
|
}
|
||||||
|
|
||||||
@app.post("/settings/removebackground")
|
@app.post("/settings/removebackground")
|
||||||
|
@ -508,7 +508,7 @@ def gumroad(v):
|
||||||
elif v.patron == 2: procoins = 5000
|
elif v.patron == 2: procoins = 5000
|
||||||
elif v.patron == 3: procoins = 10000
|
elif v.patron == 3: procoins = 10000
|
||||||
elif v.patron == 4: procoins = 25000
|
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
|
v.procoins += procoins
|
||||||
send_notification(v.id, f"You were given {procoins} Marseybux! You can use them to buy awards in the [shop](/shop).")
|
send_notification(v.id, f"You were given {procoins} Marseybux! You can use them to buy awards in the [shop](/shop).")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue