Skip to content

Commit

Permalink
fixed !has_collision
Browse files Browse the repository at this point in the history
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
  • Loading branch information
soblin committed May 22, 2023
1 parent a6d7fb6 commit c13a37b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ bool IntersectionModule::modifyPathVelocity(PathWithLaneId * path, StopReason *
RCLCPP_DEBUG(logger_, "===== plan end =====");
return true;
}
if (before_creep_state_machine_.getState() == StateMachine::State::GO && has_collision) {
if (before_creep_state_machine_.getState() == StateMachine::State::GO && !has_collision) {
occlusion_stop_required = true;
occlusion_peeking_line_idx = occlusion_peeking_line_idx_opt;

Expand Down

0 comments on commit c13a37b

Please sign in to comment.