diff --git a/common/src/states/glide_wield.rs b/common/src/states/glide_wield.rs index 68512accc5..080ef017d3 100644 --- a/common/src/states/glide_wield.rs +++ b/common/src/states/glide_wield.rs @@ -10,6 +10,7 @@ impl CharacterBehavior for Data { fn behavior(&self, data: &JoinData) -> StateUpdate { let mut update = StateUpdate::from(data); + handle_orientation(data, &mut update, 1.0); handle_move(data, &mut update, 1.0); handle_jump(data, &mut update, 1.0); handle_dodge_input(data, &mut update);