From d9e21e8d8857303caba4d1857b2e07a688186c14 Mon Sep 17 00:00:00 2001 From: MistakeNot4892 Date: Fri, 1 Dec 2023 22:29:50 +1100 Subject: [PATCH] Jetpacks in suit storage will now function as jetpacks. --- code/modules/mob/living/inventory.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/inventory.dm b/code/modules/mob/living/inventory.dm index 2a8cac458bc..4adf6cf09d6 100644 --- a/code/modules/mob/living/inventory.dm +++ b/code/modules/mob/living/inventory.dm @@ -178,4 +178,7 @@ var/obj/item/rig/rig = thrust for(var/obj/item/rig_module/maneuvering_jets/module in rig.installed_modules) return module.jets + thrust = get_equipped_item(slot_s_store_str) + if(istype(thrust)) + return thrust return null