From 9809c32b22e7db61c5aefa291ee9a207dfaad1d0 Mon Sep 17 00:00:00 2001 From: XDTM Date: Tue, 27 Sep 2016 05:26:21 +0200 Subject: [PATCH] Use freon (#20664) --- code/modules/reagents/chemistry/recipes/slime_extracts.dm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/slime_extracts.dm b/code/modules/reagents/chemistry/recipes/slime_extracts.dm index fd73906d8bc..9831f73bc60 100644 --- a/code/modules/reagents/chemistry/recipes/slime_extracts.dm +++ b/code/modules/reagents/chemistry/recipes/slime_extracts.dm @@ -249,11 +249,9 @@ addtimer(src, "freeze", 50, FALSE, holder) /datum/chemical_reaction/slimefreeze/proc/freeze(datum/reagents/holder) if(holder && holder.my_atom) - var/turf/T = get_turf(holder.my_atom) - playsound(T, 'sound/effects/phasein.ogg', 100, 1) - for(var/mob/living/M in range(T, 7)) - M.bodytemperature -= 240 - M << "You feel a chill!" + var/turf/open/T = get_turf(holder.my_atom) + if(istype(T)) + T.atmos_spawn_air("freon=50;TEMP=120") /datum/chemical_reaction/slimefireproof