From 0bb0c58e6daed60a3901709bcb2ba48e2a5718d3 Mon Sep 17 00:00:00 2001 From: c0 Date: Fri, 19 Feb 2016 13:20:09 +0300 Subject: [PATCH] Fixes a spacewalking runtime --- code/modules/mob/living/carbon/human/human_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index ab3fc2b9cf9..1772751126d 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -11,7 +11,7 @@ // Do we have a jetpack (and is it on)? var/obj/item/weapon/tank/jetpack/J = back - if(!istype(J)) + if(!istype(J) && istype(wear_suit, /obj/item/clothing/suit/space/hardsuit)) var/obj/item/clothing/suit/space/hardsuit/C = wear_suit J = C.jetpack if(istype(J) && J.allow_thrust(0.01, src))