Skip to content

Commit

Permalink
Merge pull request tgstation#13018 from Cheridan/my_b
Browse files Browse the repository at this point in the history
Fixes warning in anomaly_pyro.dm
  • Loading branch information
Aranclanos committed Nov 15, 2015
2 parents 62cd83f + d7bf779 commit b1b5e73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/events/anomaly_pyro.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b1b5e73

Please sign in to comment.