From aa3aa4bc0fea2c5afed562ed725e340b4e92c6d9 Mon Sep 17 00:00:00 2001 From: Kyep Date: Fri, 8 Feb 2019 06:05:02 -0800 Subject: [PATCH] reduces timer on 'offer to ghost' function --- .../simple_animal/hostile/terror_spiders/terror_spiders.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm b/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm index 2816ea5663a..0e635c9c60c 100644 --- a/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm +++ b/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm @@ -275,9 +275,9 @@ var/global/list/ts_spiderling_list = list() spider_placed = 1 else ts_count_alive_station++ - // after 30 seconds, assuming nobody took control of it yet, offer it to ghosts. - addtimer(CALLBACK(src, .proc/CheckFaction), 150) - addtimer(CALLBACK(src, .proc/announcetoghosts), 300) + // after 10 seconds, assuming nobody took control of it yet, offer it to ghosts. + addtimer(CALLBACK(src, .proc/CheckFaction), 90) + addtimer(CALLBACK(src, .proc/announcetoghosts), 100) var/datum/atom_hud/U = huds[DATA_HUD_MEDICAL_ADVANCED] U.add_hud_to(src)