From 1e58c65c57e2a19660a9a0ff77ce4e7305b23cc3 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 14 Sep 2021 14:30:28 +0200 Subject: [PATCH] fd --- files/routes/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/settings.py b/files/routes/settings.py index 5287a26f82..491bb817b8 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -598,7 +598,7 @@ def settings_css(v): @auth_required def settings_profilecss_get(v): - if v.coins < 1000 and not v.patron: return f"You must have +1000 {COINS_NAME} or be a patron to set profile css." + if v.coins < 1000 and not v.patron and v.admin_level < 6: return f"You must have +1000 {COINS_NAME} or be a patron to set profile css." return render_template("settings_profilecss.html", v=v) @app.post("/settings/profilecss")