forked from MarseyWorld/MarseyWorld
sfd
parent
f833729224
commit
a607febc10
|
@ -657,14 +657,8 @@ def api_comment(v):
|
||||||
|
|
||||||
check_for_blackjack_commands(body, v, c)
|
check_for_blackjack_commands(body, v, c)
|
||||||
|
|
||||||
if not c.slots_result and not c.blackjack_result:
|
if not c.slots_result and not c.blackjack_result and v.marseyawarded and parent_post.id not in ADMIGGERS and marseyaward_body_regex.search(body_html):
|
||||||
|
return {"error":"You can only type marseys!"}, 403
|
||||||
if v.marseyawarded and parent_post.id not in ADMIGGERS and marseyaward_body_regex.search(body_html):
|
|
||||||
return {"error":"You can only type marseys!"}, 403
|
|
||||||
|
|
||||||
if not c.wordle_result and not rts:
|
|
||||||
parent_post.comment_count += 1
|
|
||||||
g.db.add(parent_post)
|
|
||||||
|
|
||||||
check_for_treasure(body, c)
|
check_for_treasure(body, c)
|
||||||
|
|
||||||
|
@ -672,6 +666,10 @@ def api_comment(v):
|
||||||
answer = random.choice(WORDLE_LIST)
|
answer = random.choice(WORDLE_LIST)
|
||||||
c.wordle_result = f'_active_{answer}'
|
c.wordle_result = f'_active_{answer}'
|
||||||
|
|
||||||
|
if not c.slots_result and not c.blackjack_result and not c.wordle_result and not rts:
|
||||||
|
parent_post.comment_count += 1
|
||||||
|
g.db.add(parent_post)
|
||||||
|
|
||||||
g.db.commit()
|
g.db.commit()
|
||||||
|
|
||||||
if request.headers.get("Authorization"): return c.json
|
if request.headers.get("Authorization"): return c.json
|
||||||
|
|
Loading…
Reference in New Issue