forked from MarseyWorld/MarseyWorld
give chadmins marseybux
parent
470b046702
commit
7cd1e4bf8f
|
@ -32,9 +32,9 @@ def give_monthly_marseybux_task():
|
|||
|
||||
emails = [x['email'] for x in requests.get(f'https://api.gumroad.com/v2/products/{GUMROAD_ID}/subscribers', data=data, timeout=5).json()["subscribers"]]
|
||||
|
||||
for u in g.db.query(User).filter(User.patron > 0, User.patron_utc == 0, User.admin_level == 0).all():
|
||||
for u in g.db.query(User).filter(User.patron > 0, User.patron_utc == 0).all():
|
||||
g.db.add(u)
|
||||
if u.id in (DAD_ID, A_ID) or u.email and u.email.lower() in emails:
|
||||
if u.admin_level or u.id == A_ID or (u.email and u.email.lower() in emails):
|
||||
procoins = procoins_li[u.patron]
|
||||
u.procoins += procoins
|
||||
send_repeatable_notification(u.id, f"@Snappy has given you {procoins} Marseybux for the month of {month}! You can use them to buy awards in the [shop](/shop).")
|
||||
|
|
Loading…
Reference in New Issue