From f4d093cf19978b8f2d5528e27fca0ac240dfdaba Mon Sep 17 00:00:00 2001 From: Eschess Date: Thu, 20 Dec 2018 13:46:22 +0100 Subject: [PATCH] allows jetpacks to work properly in suit storage slot --- 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 33e855ab4d1..925e979c11d 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -13,6 +13,8 @@ var/obj/item/tank/jetpack/thrust if(istype(back,/obj/item/tank/jetpack)) thrust = back + else if(istype(s_store,/obj/item/tank/jetpack)) + thrust = s_store else if(istype(back,/obj/item/rig)) var/obj/item/rig/rig = back for(var/obj/item/rig_module/maneuvering_jets/module in rig.installed_modules)