Skip to content

Commit

Permalink
Fix #4268 (#4296)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Macenski <stevenmacenski@gmail.com>
  • Loading branch information
SteveMacenski committed May 23, 2024
1 parent 2b6d0be commit 7c8d529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nav2_smac_planner/src/collision_checker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ bool GridCollisionChecker::inCollision(
if (outsideRange(costmap_->getSizeInCellsX(), x) ||
outsideRange(costmap_->getSizeInCellsY(), y))
{
return false;
return true;
}

// Assumes setFootprint already set
Expand Down

0 comments on commit 7c8d529

Please sign in to comment.