forked from rDrama/rDrama
1
0
Fork 0

fix bad math

master
Aevann 2024-02-08 01:47:02 +02:00
parent 5de7da515e
commit 2e436dfba8
1 changed files with 4 additions and 4 deletions

View File

@ -2199,9 +2199,9 @@ def mark_effortpost(pid, v):
g.db.add(ma)
if SITE_NAME == 'WPD':
mul = 8
mul = 7
else:
mul = 4
mul = 3
coins = (p.upvotes + p.downvotes) * mul
@ -2235,9 +2235,9 @@ def unmark_effortpost(pid, v):
g.db.add(ma)
if SITE_NAME == 'WPD':
mul = 8
mul = 7
else:
mul = 4
mul = 3
coins = (p.upvotes + p.downvotes) * mul