This commit is contained in:
Aevann1 2021-11-16 17:24:20 +02:00
parent 7844d3e818
commit 155a3744ac
3 changed files with 3 additions and 8 deletions

View file

@ -793,7 +793,7 @@ def settings_css(v):
@auth_required
def settings_profilecss_get(v):
if v.truecoins < 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."
if v.truecoins < 1000 and not v.patron and v.admin_level == 0 : 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")