diff --git a/files/routes/comments.py b/files/routes/comments.py index f59f991a72..b9e69bd695 100755 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -506,6 +506,7 @@ def api_comment(v): zozbot = g.db.query(User).options(lazyload('*')).filter_by(id = ZOZBOT_ACCOUNT).first() zozbot.comment_count += 3 + zozbot.coins += 3 g.db.add(zozbot) g.db.flush()