From b5b945e8fd7377f73b826a85bcb17c03fb3bb552 Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Sun, 14 Sep 2025 17:37:14 -0400 Subject: [PATCH] jetpacks in zero G should hold you up (#18473) --- code/modules/mob/living/carbon/human/human_organs.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/carbon/human/human_organs.dm b/code/modules/mob/living/carbon/human/human_organs.dm index 9df3fa2591..d656f8ffc8 100644 --- a/code/modules/mob/living/carbon/human/human_organs.dm +++ b/code/modules/mob/living/carbon/human/human_organs.dm @@ -105,6 +105,11 @@ if (r_hand && istype(r_hand, /obj/item/cane)) stance_damage -= 2 + // Jetpacks in zeroG count for holding you up + var/obj/item/tank/jetpack/thrust = get_jetpack() + if (lastarea?.get_gravity() == FALSE && thrust?.stabilization_on) + stance_damage -= 4 + // standing is poor if(stance_damage >= 4 || (stance_damage >= 2 && prob(5))) if(!(lying || resting) && !isbelly(loc))