Skip to content

Commit 07fbc50

Browse files
Fix #4268 (#4296)
Signed-off-by: Steve Macenski <stevenmacenski@gmail.com>
1 parent 1e3a68b commit 07fbc50

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
@@ -101,7 +101,7 @@ bool GridCollisionChecker::inCollision(
101101
if (outsideRange(costmap_->getSizeInCellsX(), x) ||
102102
outsideRange(costmap_->getSizeInCellsY(), y))
103103
{
104-
return false;
104+
return true;
105105
}
106106

107107
// Assumes setFootprint already set

0 commit comments

Comments
 (0)