More spiders and bring back nurses

This commit is contained in:
Razgriz
2023-02-13 23:07:54 -07:00
committed by GitHub
parent 0e5a0652cb
commit c587a000b5

View File

@@ -7,7 +7,7 @@
/datum/event/spider_infestation/setup() /datum/event/spider_infestation/setup()
announceWhen = rand(announceWhen, announceWhen + 60) 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 sent_spiders_to_station = 0
/datum/event/spider_infestation/announce() /datum/event/spider_infestation/announce()
@@ -29,6 +29,6 @@
while((spawncount >= 1) && vents.len) while((spawncount >= 1) && vents.len)
var/obj/vent = pick(vents) 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 vents -= vent
spawncount-- spawncount--