Skip to content

Commit

Permalink
Fix final forum phase select faction leader WS
Browse files Browse the repository at this point in the history
Fix an issue where WebSocket messages for select faction leader actions were not being sent to clients during the final forum phase.
  • Loading branch information
iamlogand committed Apr 21, 2024
1 parent 37b05a7 commit c392204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/rorapp/functions/faction_leader_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def proceed_to_next_step_if_forum_phase(game_id, step, faction) -> List[dict]:

if next_faction is not None:
if step.phase.name.startswith("Final"):
messages_to_send.extend(
messages_to_send.append(
generate_select_faction_leader_action(next_faction)
)
else:
Expand Down

0 comments on commit c392204

Please sign in to comment.