Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/modules/events/spider_infestation.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand Down
Loading