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())