Skip to content

Commit

Permalink
fix rel name
Browse files Browse the repository at this point in the history
  • Loading branch information
AmooHashem authored May 15, 2024
1 parent cef9ec9 commit 4ea6f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/roadmap/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def _get_player_taken_path(player_id: int):
player = Player.get_player(player_id)
player_current_state: State = player.current_state
fsm = player_current_state.fsm
histories: list[PlayerStateHistory] = player.histories.all()
histories: list[PlayerStateHistory] = player.player_state_histories.all()
taken_path: list[Link] = []

# 100 is consumed as maximum length in a fsm graph
Expand Down

0 comments on commit 4ea6f9f

Please sign in to comment.