From 5336c235d589aba3c8a39a8bbb4c52eb95486f14 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Sun, 14 Sep 2025 15:10:02 -0700 Subject: [PATCH] [MIRROR] jetpacks in zero G should hold you up if you have damaged legs (#11651) Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> --- 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 95c40589a2..a75c2c47ae 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))