forked from rDrama/rDrama
1
0
Fork 0

same as last commit

master
Aevann1 2022-09-06 06:54:59 +02:00
parent 1d419640a3
commit d930141dc5
1 changed files with 2 additions and 2 deletions

View File

@ -348,7 +348,7 @@ def award_thing(v, thing_type, id):
if author.marsify: author.marsify += 21600
else: author.marsify = int(time.time()) + 21600
if thing_type == 'comment' and not author.deflector:
if thing_type == 'comment' and (not author.deflector or v.id == AEVANN_ID):
body = thing.body
if author.owoify: body = owoify(body)
body = marsify(body)
@ -366,7 +366,7 @@ def award_thing(v, thing_type, id):
if author.owoify: author.owoify += 21600
else: author.owoify = int(time.time()) + 21600
if thing_type == 'comment' and not author.deflector:
if thing_type == 'comment' and not (author.deflector or v.id == AEVANN_ID):
body = thing.body
body = owoify(body)
if author.marsify: body = marsify(body)