mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-09 00:42:34 +00:00
Merge pull request #9041 from PsiOmegaDelta/ChitterChitter
Fixes #9029.
This commit is contained in:
@@ -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--
|
||||
spawncount--
|
||||
|
||||
4
html/changelogs/PsiOmegaDelta-ChitterChitter.yml
Normal file
4
html/changelogs/PsiOmegaDelta-ChitterChitter.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
author: PsiOmegaDelta
|
||||
changes:
|
||||
- tweak: "The spider infestation event now makes an announcement much sooner."
|
||||
delete-after: false
|
||||
Reference in New Issue
Block a user