diff --git a/code/ZAS/Creation.dm b/code/ZAS/Creation.dm index ff20eed6f2a..69a8e1425fe 100644 --- a/code/ZAS/Creation.dm +++ b/code/ZAS/Creation.dm @@ -1,5 +1,6 @@ zone New(turf/start) + . = ..() //Get the turfs that are part of the zone using a floodfill method if(istype(start,/list)) contents = start diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index ef0cd7bdb43..2be48979c90 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -585,6 +585,7 @@ if(breath.temperature > (T0C+66) && !(COLD_RESISTANCE in mutations)) // Hot air hurts :( if(prob(20)) src << "\red You feel a searing heat in your lungs!" + take_overall_damage(0,2) //burn them a bit. fire_alert = max(fire_alert, 1) else fire_alert = 0 @@ -603,8 +604,6 @@ if(istype(loc, /turf/space)) environment_heat_capacity = loc:heat_capacity loc_temp = 2.7 - else if(istype(loc, /obj/machinery/atmospherics/unary/cryo_cell)) - loc_temp = loc:air_contents.temperature else loc_temp = environment.temperature