forked from rDrama/rDrama
1
0
Fork 0

fix hieroglyphs award not applying in walls

master
Aevann 2023-07-29 02:00:50 +03:00
parent fc97ea2186
commit e8d8804c83
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ def comment(v:User):
execute_antispam_comment_check(body, v)
execute_antispam_duplicate_comment_check(v, body_html)
if v.marseyawarded and posting_to_post and post_target.id not in ADMIGGER_THREADS and marseyaward_body_regex.search(body_html):
if v.marseyawarded and marseyaward_body_regex.search(body_html) and not (posting_to_post and post_target.id in ADMIGGER_THREADS):
abort(403, "You can only type marseys!")
if len(body_html) > COMMENT_BODY_HTML_LENGTH_LIMIT: