From 6279057c7926bdb3f3d693edecf38eec00087b31 Mon Sep 17 00:00:00 2001 From: Alan Date: Sun, 23 Aug 2026 14:08:00 +0000 Subject: [PATCH] Prevent mobs from suffocating in cryogenic freezers. (#32423) --- code/modules/mob/living/carbon/carbon_life.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/carbon_life.dm b/code/modules/mob/living/carbon/carbon_life.dm index ecd6d8ba6fd..03f97a81e4b 100644 --- a/code/modules/mob/living/carbon/carbon_life.dm +++ b/code/modules/mob/living/carbon/carbon_life.dm @@ -69,6 +69,9 @@ if(istype(loc, /obj/machinery/atmospherics/unary/cryo_cell)) return + if(istype(loc, /obj/machinery/cryopod)) // Do not suffocate in cryogenic storage. What the hell. + return + var/datum/gas_mixture/breath if(health <= HEALTH_THRESHOLD_CRIT && check_death_method())