From 4ede2bc2522b220b19a317e186c211602276f13d Mon Sep 17 00:00:00 2001 From: FluffMedic <109300046+FluffMedic@users.noreply.github.com> Date: Wed, 1 Oct 2025 18:36:11 -0400 Subject: [PATCH 1/2] Purges Broodling Spiders from event (#11764) --- 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 51e5047c31f..24cbeef35bd 100644 --- a/code/modules/events/spider_infestation.dm +++ b/code/modules/events/spider_infestation.dm @@ -30,7 +30,7 @@ while((spawncount >= 1) && vents.len) var/obj/vent = pick(vents) - //CHOMPEDIT START adding spider EGGS to the possible spawns instead of singular spiderling spawns. + //CHOMPEDIT START adding spider EGGS to the possible spawns instead of singular spiderling spawns. All spiders now space spiders if(severity == 3) var/spawn_spiderlings = pickweight(list( /obj/effect/spider/spiderling/space = 95, @@ -39,7 +39,7 @@ )) new spawn_spiderlings(vent.loc) if(severity < 3) //If the severity is less than 3, only spawn regular spiderlings - new /obj/effect/spider/spiderling/broodling(vent.loc) //VOREStation Edit - No nurses //CHOMP Edit Oh my JESUS CHRIST, this slipped past me. Literally no nurses. Well guess what, nurses are back. + new /obj/effect/spider/spiderling/space(vent.loc) //VOREStation Edit - No nurses //CHOMP Edit Oh my JESUS CHRIST, this slipped past me. Literally no nurses. Well guess what, nurses are back. //CHOMPEDIT END vents -= vent From 23a44fa82c6e9c6c363224c170239b1ed4b687e1 Mon Sep 17 00:00:00 2001 From: PRBot Date: Thu, 2 Oct 2025 13:46:59 +0000 Subject: [PATCH 2/2] Purges Broodling Spiders from event