forked from MarseyWorld/MarseyWorld
master
parent
ec9797ff18
commit
b752a2ddad
|
@ -1036,14 +1036,15 @@ def unsave_comment(cid, v):
|
||||||
@auth_required
|
@auth_required
|
||||||
def handle_blackjack_action(cid, v):
|
def handle_blackjack_action(cid, v):
|
||||||
comment = get_comment(cid)
|
comment = get_comment(cid)
|
||||||
action = request.values.get("action", "")
|
if 'active' in comment.blackjack_result:
|
||||||
|
action = request.values.get("action", "")
|
||||||
|
|
||||||
if action == 'hit': player_hit(comment)
|
if action == 'hit': player_hit(comment)
|
||||||
elif action == 'stay': player_stayed(comment)
|
elif action == 'stay': player_stayed(comment)
|
||||||
|
|
||||||
g.db.add(comment)
|
g.db.add(comment)
|
||||||
g.db.add(v)
|
g.db.add(v)
|
||||||
g.db.commit()
|
g.db.commit()
|
||||||
return { "message" : "..." }
|
return { "message" : "..." }
|
||||||
|
|
||||||
@app.post("/wordle/<cid>")
|
@app.post("/wordle/<cid>")
|
||||||
|
|
Loading…
Reference in New Issue