Fixes #28175 : Adds a light to the ash walker nest. (#1477)

This commit is contained in:
CitadelStationBot
2017-06-13 15:46:58 -05:00
committed by kevinz000
parent 6b79f26c9b
commit 8157797dff

View File

@@ -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()
..()