Firealarms now go off if it's too cold (#22579)

This commit is contained in:
Cyberboss
2017-01-23 09:55:46 +01:00
committed by AnturK
parent 4df4a42eca
commit c5512ea1ce
+1 -1
View File
@@ -87,7 +87,7 @@
playsound(src.loc, 'sound/effects/sparks4.ogg', 50, 1)
/obj/machinery/firealarm/temperature_expose(datum/gas_mixture/air, temperature, volume)
if(!emagged && detecting && !stat && temperature > T0C + 200)
if(!emagged && detecting && !stat && (temperature > T0C + 200 || temperature < BODYTEMP_COLD_DAMAGE_LIMIT))
alarm()
..()