Fixes warning in anomaly_pyro.dm

This commit is contained in:
Cheridan
2015-11-14 00:23:05 -06:00
parent aebe3384a0
commit d7bf779f2d
+2 -2
View File
@@ -30,9 +30,9 @@
if(newAnomaly.loc)
var/turf/simulated/T = get_turf(newAnomaly)
if(istype(T))
T.atmos_spawn_air(SPAWN_HEAT | SPAWN_TOXINS | SPAWN_OXYGEN, 200) //Make it hot and burny for the new slime
T.atmos_spawn_air(SPAWN_HEAT | SPAWN_TOXINS | SPAWN_OXYGEN, 200) //Make it hot and burny for the new slime
var/mob/living/simple_animal/slime/S = new/mob/living/simple_animal/slime(get_turf(newAnomaly))
var/mob/living/simple_animal/slime/S = new/mob/living/simple_animal/slime(T)
S.colour = pick("red", "orange")
S.rabid = 1