diff --git a/code/modules/events/spider_infestation.dm b/code/modules/events/spider_infestation.dm index d96e4fb54c3..52c3fdf0489 100644 --- a/code/modules/events/spider_infestation.dm +++ b/code/modules/events/spider_infestation.dm @@ -1,14 +1,13 @@ /var/global/sent_spiders_to_station = 0 /datum/event/spider_infestation - announceWhen = 400 - + announceWhen = 90 var/spawncount = 1 /datum/event/spider_infestation/setup() - announceWhen = rand(announceWhen, announceWhen + 50) - spawncount = rand(8, 12) //spiderlings only have a 50% chance to grow big and strong + announceWhen = rand(announceWhen, announceWhen + 60) + spawncount = rand(4 * severity, 6 * severity) //spiderlings only have a 50% chance to grow big and strong sent_spiders_to_station = 0 /datum/event/spider_infestation/announce() @@ -26,4 +25,4 @@ var/obj/vent = pick(vents) new /obj/effect/spider/spiderling(vent.loc) vents -= vent - spawncount-- \ No newline at end of file + spawncount-- diff --git a/html/changelogs/PsiOmegaDelta-ChitterChitter.yml b/html/changelogs/PsiOmegaDelta-ChitterChitter.yml new file mode 100644 index 00000000000..8f07219c910 --- /dev/null +++ b/html/changelogs/PsiOmegaDelta-ChitterChitter.yml @@ -0,0 +1,4 @@ +author: PsiOmegaDelta +changes: + - tweak: "The spider infestation event now makes an announcement much sooner." +delete-after: false