From 027850e55d7c83661f516f32b1968dc12d5e522e Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 22 Oct 2021 00:59:19 +0200 Subject: [PATCH] sfd --- files/routes/admin.py | 2 +- files/routes/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/files/routes/admin.py b/files/routes/admin.py index c8e67fec2..d0476633c 100755 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -178,7 +178,7 @@ def monthly(v): elif u.patron == 4: procoins = 25000 elif u.patron == 5 or u.patron == 8: procoins = 50000 - u.procoins += bc + u.procoins += procoins send_notification(NOTIFICATIONS_ACCOUNT, u, f"You were given {procoins} Marseybux!") g.db.add(u) diff --git a/files/routes/settings.py b/files/routes/settings.py index ea091aad1..8abf9509f 100755 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -311,7 +311,7 @@ def gumroad(v): elif v.patron == 4: procoins = 25000 elif v.patron == 5 or v.patron == 8: procoins = 50000 - v.procoins += bc + v.procoins += procoins send_notification(NOTIFICATIONS_ACCOUNT, v, f"You were given {procoins} Marseybux!") g.db.add(v)