Skip to content

Commit 7c8d529

Browse files
committed
Fix #4268 (#4296)
Signed-off-by: Steve Macenski <stevenmacenski@gmail.com>
1 parent 2b6d0be commit 7c8d529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nav2_smac_planner/src/collision_checker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ bool GridCollisionChecker::inCollision(
9797
if (outsideRange(costmap_->getSizeInCellsX(), x) ||
9898
outsideRange(costmap_->getSizeInCellsY(), y))
9999
{
100-
return false;
100+
return true;
101101
}
102102

103103
// Assumes setFootprint already set

0 commit comments

Comments
 (0)