Rover: Merging a fix of a wp loiter bug

This commit is contained in:
Grant Morphett 2017-03-15 15:31:38 +11:00
parent ecc89f0b7e
commit 9d5e29dff7
1 changed files with 2 additions and 1 deletions

View File

@ -93,9 +93,10 @@ bool Rover::in_stationary_loiter()
if (active_loiter && (wp_distance > g.waypoint_radius)) {
return false;
}
return true;
}
return true;
return false;
}