From 38e4c3f772d142feabf30afdebbb406059ccc85d Mon Sep 17 00:00:00 2001 From: Kyep Date: Fri, 8 Feb 2019 16:24:00 -0800 Subject: [PATCH] makes mother spawn count a var --- .../mob/living/simple_animal/hostile/terror_spiders/mother.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 e1f7eaa2400..d525c7f3211 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 @@ -25,6 +25,7 @@ spider_opens_doors = 2 web_type = null var/canspawn = TRUE + var/spawncount = 30 var/datum/action/innate/terrorspider/ventsmash/ventsmash_action /mob/living/simple_animal/hostile/poison/terror_spider/mother/New() @@ -38,7 +39,7 @@ canspawn = FALSE if(canspawn) canspawn = FALSE - for(var/i in 0 to 30) + for(var/i in 0 to spawncount) var/obj/structure/spider/spiderling/terror_spiderling/S = new /obj/structure/spider/spiderling/terror_spiderling(get_turf(src)) if(prob(50)) S.stillborn = 1