From 23085154ab546c972efa1f0e60df89b79158d309 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 4 Feb 2018 23:18:34 -0600 Subject: [PATCH] [MIRROR] Fixes animal spawners spawning mobs after death (#5284) * Fixes ancient goliathes (#35242) * Fixes animal spawners spawning mobs after death --- code/modules/mob/living/simple_animal/spawner.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/spawner.dm b/code/modules/mob/living/simple_animal/spawner.dm index 4e136e6aa6..43274bc3f7 100644 --- a/code/modules/mob/living/simple_animal/spawner.dm +++ b/code/modules/mob/living/simple_animal/spawner.dm @@ -32,6 +32,8 @@ /mob/living/simple_animal/hostile/spawner/Life() . = ..() + if(!.) // dead + return spawn_mob() /mob/living/simple_animal/hostile/spawner/proc/spawn_mob()