diff --git a/files/routes/comments.py b/files/routes/comments.py index a1013a62c6..c248590f5b 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -283,7 +283,9 @@ def api_comment(v): all_by_author = g.db.query(Marsey).filter_by(author_id=user.id).count() # off-by-one: newly added marsey isn't counted - if all_by_author >= 9: + if all_by_author >= 99: + badge_grant(badge_id=143, user=user) + elif all_by_author >= 9: badge_grant(badge_id=16, user=user) else: badge_grant(badge_id=17, user=user)