remotes/1693045480750635534/spooky-22
Aevann1 2021-12-13 22:17:39 +02:00
parent e7a2270d9e
commit d3b3bfff19
1 changed files with 5 additions and 2 deletions

View File

@ -91,7 +91,9 @@ def api_vote_post(post_id, new, v):
existing.vote_type = new
g.db.add(existing)
elif existing.vote_type != 0 and new == 0:
post.author.coins -= 2
if post.created_utc > 1639302300: post.author.coins -= 2
else: post.author.coins -= 1
post.author.coins -= amount
post.author.truecoins -= 1
g.db.add(post.author)
g.db.delete(existing)
@ -159,7 +161,8 @@ def api_vote_comment(comment_id, new, v):
existing.vote_type = new
g.db.add(existing)
elif existing.vote_type != 0 and new == 0:
comment.author.coins -= 2
if comment.created_utc > 1639302300: comment.author.coins -= 2
else: comment.author.coins -= 1
comment.author.truecoins -= 1
g.db.add(comment.author)
g.db.delete(existing)