Skip to content

Commit

Permalink
cleaned up A* path info output
Browse files Browse the repository at this point in the history
  • Loading branch information
njunius committed Sep 30, 2023
1 parent dae5420 commit 5336077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/secondary/npc_a_star.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def _construct_path(curr_node, prev_node, character_affecter, step_multiplier, f
counter += 1
final_path = reconst_path

print('path length: ', len(final_path), '\nfrontier length: ', len(frontier))
print('path length: ', len(final_path), 'frontier length: ', len(frontier))
return final_path

# A* search for use with Puppitor
Expand Down

0 comments on commit 5336077

Please sign in to comment.