diff --git a/files/routes/admin.py b/files/routes/admin.py index cd05a27a25..228d234fd8 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -24,11 +24,11 @@ from urllib.parse import quote, urlencode @app.post('/kippy') @admin_level_required(PERMS['PRINT_MARSEYBUX_FOR_KIPPY_ON_PCMEMES']) def kippy(v): - if SITE == 'rdrama.net': abort(404) + if SITE != 'pcmemes.net': abort(404) kippy = get_account(KIPPY_ID) kippy.procoins += 10000 g.db.add(kippy) - return '10k marseycoins printed!' + return '10k marseybux printed!' @app.get('/admin/loggedin') @admin_level_required(PERMS['VIEW_ACTIVE_USERS'])