diff --git a/code/LINDA/LINDA_system.dm b/code/LINDA/LINDA_system.dm index 654eda24454..9099f0db23a 100644 --- a/code/LINDA/LINDA_system.dm +++ b/code/LINDA/LINDA_system.dm @@ -214,7 +214,6 @@ turf/CanPass(atom/movable/mover, turf/target, height=1.5,air_group=0) T.atmos_spawn_air(text, amount) var/const/SPAWN_HEAT = 1 -var/const/SPAWN_COLD = 2 var/const/SPAWN_TOXINS = 4 var/const/SPAWN_OXYGEN = 8 @@ -233,8 +232,6 @@ var/const/SPAWN_AIR = 256 if(flag & SPAWN_HEAT) G.temperature += 1000 - if(flag & SPAWN_COLD) - G.temperature = max(1, G.temperature - 1000) if(flag & SPAWN_TOXINS) G.toxins += amount diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index d38e850b45a..1efa095a7f0 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -1856,8 +1856,8 @@ datum if(volume >= 5) for(var/mob/living/carbon/slime/M in T) M.adjustToxLoss(rand(15,30)) - if(istype(T)) - T.atmos_spawn_air(SPAWN_COLD) + //if(istype(T)) + // T.atmos_spawn_air(SPAWN_COLD) sodiumchloride name = "Table Salt"