From 74b338bf2b1dceb0a771640e6542f475e0fece54 Mon Sep 17 00:00:00 2001 From: killer653 Date: Tue, 31 Oct 2017 17:18:38 -0400 Subject: [PATCH] Makes you glide while flying. --- code/modules/mob/living/carbon/human/human_movement.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 93f583c5abb..48c5a11c28f 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -141,6 +141,8 @@ if(((!check_drift) || (check_drift && thrust.stabilization_on)) && (!lying) && (thrust.allow_thrust(0.01, src))) inertia_dir = 0 return 1 + if(wings_flying) //VOREStation Edit. If you're flying, you glide around! + return 0 //VOREStation Edit. //If no working jetpack then use the other checks if(..())