From bdc2ca5065d2896e6bbc29f06810dbaacd794a7e Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 7 Feb 2024 01:49:45 +0200 Subject: [PATCH] fix prev commits --- files/routes/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/admin.py b/files/routes/admin.py index c9a02f0ba..1b8f95846 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -2255,6 +2255,6 @@ def retrofix(v): posts = g.db.query(Post).filter_by(effortpost=True) for p in posts: print(p.title, flush=True) - coins = (p.upvotes + p.downvotes) * mul + coins = (p.upvotes + p.downvotes) * 4 p.author.pay_account('coins', coins) return 'nig'