Skip to content

Commit

Permalink
Adds light (tgstation#28179)
Browse files Browse the repository at this point in the history
  • Loading branch information
Expletive authored and AnturK committed Jun 8, 2017
1 parent 17bbe25 commit 0398128
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions code/modules/ruins/objects_and_mobs/ash_walker_den.dm
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@
loot = list(/obj/effect/gibspawner, /obj/item/device/assembly/signaler/anomaly)
del_on_death = 1
var/meat_counter
var/obj/effect/light_emitter/tendril/emitted_light

/mob/living/simple_animal/hostile/spawner/ash_walker/Initialize()
. = ..()
emitted_light = new(loc)

/mob/living/simple_animal/hostile/spawner/ash_walker/Destroy()
QDEL_NULL(emitted_light)
. = ..()

/mob/living/simple_animal/hostile/spawner/ash_walker/Life()
..()
Expand Down

0 comments on commit 0398128

Please sign in to comment.