Skip to content

Commit 0092abb

Browse files
andriimaistrukandriimaistruk
andauthored
Fix wait_for_lift always False issue (ros-navigation#241)
Co-authored-by: andriimaistruk <[email protected]>
1 parent 7e28106 commit 0092abb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nav2_behavior_tree/plugins/action/set_lift_level_action.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ SetLiftLevelAction::SetLiftLevelAction(
3131
void SetLiftLevelAction::on_tick()
3232
{
3333
getInput("lift_level", goal_.lift_level);
34-
getInput("wait_for_lift", goal_.wait_for_lift);
34+
getInput("wait_for_lift", goal_.wait_for_lift.data);
3535
getInput("lift_timeout", goal_.lift_timeout);
3636
}
3737

0 commit comments

Comments
 (0)