This commit is contained in:
Aevann1 2021-11-24 00:49:11 +02:00
parent 8109c863aa
commit 5b1169fcdc

View file

@ -557,6 +557,8 @@ def award_post(pid, v):
if author.marseyawarded: author.marseyawarded += 86400
else: author.marseyawarded = time.time() + 86400
elif kind == "pizzashill":
if author.bird:
return {"error": "This user is the under the effect of a conflicting award: Bird Site award."}, 404
if author.longpost: author.longpost += 86400
else: author.longpost = time.time() + 86400
send_notification(IDIO_ID, f"@{v.username} used {kind} award on {request.host_url}{post.shortlink}")
@ -702,6 +704,8 @@ def award_comment(cid, v):
if author.marseyawarded: author.marseyawarded += 86400
else: author.marseyawarded = time.time() + 86400
elif kind == "pizzashill":
if author.bird:
return {"error": "This user is the under the effect of a conflicting award: Bird Site award."}, 404
if author.longpost: author.longpost += 86400
else: author.longpost = time.time() + 86400
send_notification(IDIO_ID, f"@{v.username} used {kind} award on {request.host_url}{c.shortlink}")