Skip to content

Commit

Permalink
fix(behavior_path_planner): use previous path for get current lane (#…
Browse files Browse the repository at this point in the history
…4094)

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
  • Loading branch information
rej55 authored Jun 29, 2023
1 parent d295c81 commit b86d3d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ TurnSignalInfo NormalLaneChange::updateOutputTurnSignal()

lanelet::ConstLanelets NormalLaneChange::getCurrentLanes() const
{
return utils::getCurrentLanesFromPath(prev_module_reference_path_, planner_data_);
return utils::getCurrentLanesFromPath(prev_module_path_, planner_data_);
}

lanelet::ConstLanelets NormalLaneChange::getLaneChangeLanes(
Expand Down

0 comments on commit b86d3d8

Please sign in to comment.