From 60e31e90d93d7150af77d1e255145769b9e9a2fa Mon Sep 17 00:00:00 2001
From: jshipsey <jshipsey18@gmail.com>
Date: Mon, 26 Apr 2021 23:17:04 -0400
Subject: [PATCH] fix glide wield

---
 common/src/states/glide_wield.rs | 1 +
 1 file changed, 1 insertion(+)

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);