From c587a000b5aebe6a6f6fa99da04a8d73b8f8bedc Mon Sep 17 00:00:00 2001 From: Razgriz Date: Mon, 13 Feb 2023 23:07:54 -0700 Subject: [PATCH] More spiders and bring back nurses --- code/modules/events/spider_infestation.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/events/spider_infestation.dm b/code/modules/events/spider_infestation.dm index a5ca92b650..a22f23661a 100644 --- a/code/modules/events/spider_infestation.dm +++ b/code/modules/events/spider_infestation.dm @@ -7,7 +7,7 @@ /datum/event/spider_infestation/setup() announceWhen = rand(announceWhen, announceWhen + 60) - spawncount = rand(6 * severity, 12 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: Tripled amount spawned + spawncount = rand(6 * severity, 14 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: old: 2/4 new: 6/14 sent_spiders_to_station = 0 /datum/event/spider_infestation/announce() @@ -29,6 +29,6 @@ while((spawncount >= 1) && vents.len) var/obj/vent = pick(vents) - new /obj/effect/spider/spiderling/virgo(vent.loc) //VOREStation Edit - No nurses + new /obj/effect/spider/spiderling(vent.loc) //VOREStation Edit - No nurses //Oh my JESUS CHRIST, this slipped past me. Literally no nurses. Well guess what, nurses are back. vents -= vent spawncount--