automating marsey badges

This commit is contained in:
Aevann1 2022-03-05 00:59:33 +02:00
parent eb9d874e66
commit d1901de786
2 changed files with 35 additions and 4 deletions

View file

@ -621,7 +621,7 @@ def badge_grant_post(v):
try: badge_id = int(request.values.get("badge_id"))
except: abort(400)
if badge_id in {94,95,96,97,98,109}: abort(403)
if badge_id in {16,17,94,95,96,97,98,109}: abort(403)
if user.has_badge(badge_id):
return render_template("admin/badge_grant.html", v=v, badge_types=badges, error="User already has that badge.")