From f39ae72f3825f4ec9106f2971ae2e4d722b11b6c Mon Sep 17 00:00:00 2001 From: Drulikar Date: Sat, 29 Jul 2023 06:52:14 -0700 Subject: [PATCH] 5 attempts --- code/modules/mob/living/carbon/xenomorph/Embryo.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/Embryo.dm b/code/modules/mob/living/carbon/xenomorph/Embryo.dm index ce343a392dc6..54f5892ca93c 100644 --- a/code/modules/mob/living/carbon/xenomorph/Embryo.dm +++ b/code/modules/mob/living/carbon/xenomorph/Embryo.dm @@ -217,9 +217,9 @@ picked = candidates[1] message_alien_candidates(candidates, dequeued = 1) else - // Make up to 10 attempts from the queue for an unnested host - // At 10s per candidate, for 11 candidates (facehugger is the +1) this means we may have delayed an unnested autoburst up to 110 seconds - for(var/i in 1 to min(10, length(candidates))) + // Make up to 5 attempts from the queue for an unnested host + // At 10s per candidate, for 6 candidates (facehugger is the +1) this means we may have delayed an unnested autoburst up to 60 seconds + for(var/i in 1 to min(5, length(candidates))) var/mob/dead/observer/cur_candidate = candidates[i] if(!cur_candidate?.client) // Make sure they are still a valid candidate since tgui_alerts may have delayed us to this point continue