forked from rDrama/rDrama
1
0
Fork 0

make carp immune to awards

master
Aevann1 2022-09-21 22:38:59 +02:00
parent 61739b765e
commit 302a852de3
1 changed files with 1 additions and 3 deletions

View File

@ -166,7 +166,7 @@ def award_thing(v, thing_type, id):
author = thing.author
if author.id in (PIZZASHILL_ID, DAD_ID) and v.id not in (PIZZASHILL_ID, DAD_ID):
if author.id in (PIZZASHILL_ID, DAD_ID, CARP_ID) and v.id not in (PIZZASHILL_ID, DAD_ID, CARP_ID):
return {"error": "This user is immune to awards."}, 403
if kind == "benefactor" and author.id == v.id:
@ -406,8 +406,6 @@ def award_thing(v, thing_type, id):
else: author.rainbow = int(time.time()) + 86400
badge_grant(user=author, badge_id=171)
elif kind == "spider":
if author.id == CARP_ID:
return {"error": "Carp is immune to the spider award!"}, 403
if author.spider: author.spider += 86400
else: author.spider = int(time.time()) + 86400
badge_grant(user=author, badge_id=179, notify=False)