We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeceb9b commit 78964d4Copy full SHA for 78964d4
code/modules/surgery/organs/external/wings/functional_wings.dm
@@ -50,7 +50,7 @@
50
51
///Called on_life(). Handle flight code and check if we're still flying
52
/obj/item/organ/external/wings/functional/proc/handle_flight(mob/living/carbon/human/human)
53
- if(human.movement_type & ~FLYING)
+ if(!(human.movement_type & FLYING))
54
return FALSE
55
if(!can_fly(human))
56
toggle_flight(human)
@@ -115,6 +115,7 @@
115
passtable_off(human, SPECIES_TRAIT)
116
close_wings()
117
human.update_body_parts()
118
+ human.refresh_gravity()
119
120
///SPREAD OUR WINGS AND FLLLLLYYYYYY
121
/obj/item/organ/external/wings/functional/proc/open_wings()
0 commit comments