forked from rDrama/rDrama
1
0
Fork 0

actually give them the coins

master
Aevann 2024-02-07 01:45:30 +02:00
parent 9cbdd57ea0
commit a83739f81d
1 changed files with 4 additions and 0 deletions

View File

@ -2205,6 +2205,8 @@ def mark_effortpost(pid, v):
coins = (p.upvotes + p.downvotes) * mul
p.author.pay_account('coins', coins)
send_repeatable_notification(p.author_id, f":marseyclapping: @{v.username} (a site admin) has marked [{p.title}](/post/{p.id}) as an effortpost, it now gets x{mul} coins from votes. You have received {coins} coins retroactively, thanks! :!marseyclapping:")
return {"message": "Post has been marked as an effortpost!"}
@ -2239,6 +2241,8 @@ def unmark_effortpost(pid, v):
coins = (p.upvotes + p.downvotes) * mul
p.author.charge_account('coins', coins)
send_repeatable_notification(p.author_id, f":marseyitsover: @{v.username} (a site admin) has unmarked [{p.title}](/post/{p.id}) as an effortpost. {coins} coins have been deducted from you. :!marseyitsover:")
return {"message": "Post has been unmarked as an effortpost!"}