There was an error while loading. Please reload this page.
1 parent 5fd3409 commit 7232d92Copy full SHA for 7232d92
1 file changed
crates/control/src/motion/motion_selector.rs
@@ -62,7 +62,7 @@ impl MotionSelector {
62
let is_standing_up =
63
current_motion.is_dispatching() && requested_motion.is_standup_motion();
64
65
- let stand_up_count = stand_up_counting(
+ let stand_up_count = count_stand_up_attempts(
66
current_motion,
67
is_standing_up,
68
self.was_standing_up,
@@ -204,7 +204,7 @@ fn transition_motion(
204
}
205
206
207
-fn stand_up_counting(
+fn count_stand_up_attempts(
208
current_motion: MotionType,
209
is_standing_up: bool,
210
was_standing_up: bool,
0 commit comments