From a9f77d9344e1443753835119f716d34a315507bd Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 8 Aug 2022 16:38:02 +0100 Subject: [PATCH] let it retry for up to a minute --- code/datums/components/dullahan.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/dullahan.dm b/code/datums/components/dullahan.dm index b3b2c44a63..053fe2ff11 100644 --- a/code/datums/components/dullahan.dm +++ b/code/datums/components/dullahan.dm @@ -60,7 +60,7 @@ dullahan_head.update_appearance() /datum/component/dullahan/proc/update_name(retries = 0) - if(retries > 3) + if(retries > 30) return FALSE var/mob/living/carbon/human/H = parent if(length(H.name))