From 9ef421e3751c4a33f66f6c7ff2a263471eb472d7 Mon Sep 17 00:00:00 2001 From: Kyep Date: Thu, 28 Mar 2019 21:37:09 -0700 Subject: [PATCH] patches erase brood to not trigger mothers to spawn lings --- .../mob/living/simple_animal/hostile/terror_spiders/mother.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/terror_spiders/mother.dm b/code/modules/mob/living/simple_animal/hostile/terror_spiders/mother.dm index 354f99db8af..d1e171d2f55 100644 --- a/code/modules/mob/living/simple_animal/hostile/terror_spiders/mother.dm +++ b/code/modules/mob/living/simple_animal/hostile/terror_spiders/mother.dm @@ -38,6 +38,8 @@ if(can_die()) if(spider_awaymission && !is_away_level(z)) canspawn = FALSE + if(degenerate) + canspawn = FALSE if(canspawn) canspawn = FALSE for(var/i in 0 to spawn_count)