forked from rDrama/rDrama
1
0
Fork 0

make distinguished posts immune to cosmetic awards

master
Aevann 2023-10-20 18:56:26 +03:00
parent 1378b18fc6
commit 1e5e7c8781
1 changed files with 3 additions and 0 deletions

View File

@ -199,6 +199,9 @@ def award_thing(v, thing_type, id):
if thing_type == 'post' and thing.id == 210983:
abort(403, "You can't award this post!")
if thing_type == 'post' and thing.distinguish_level and AWARDS[kind]['cosmetic']:
abort(403, "Distinguished posts are immune to cosmetic awards!")
if kind == "benefactor":
if author.id == v.id:
abort(403, "You can't use this award on yourself!")