From 95a175ca69a4497e9ac85a65ccc7ccdede9db303 Mon Sep 17 00:00:00 2001 From: GriffinMan <6534999+GriffinMan4455@users.noreply.github.com> Date: Wed, 23 Oct 2024 16:44:08 -0400 Subject: [PATCH] Update code/modules/mob/living/carbon/human/life.dm Ah, yeah I meant to change this back after finding the part of human_defines.dm but must've discarded the changes back as part of a different commit, whoops Co-authored-by: Doubleumc --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index c6f3f31cbde..1a43138421e 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -63,7 +63,7 @@ else //Dead if(!undefibbable) handle_necro_chemicals_in_body(delta_time) //Specifically for chemicals that still work while dead. - if(life_tick > 0.5 && timeofdeath && (timeofdeath < 0.5 || world.time - timeofdeath > revive_grace_period) && !issynth(src)) //We are dead beyond revival, or we're junk mobs spawned like the clowns on the clown shuttle + if(life_tick > 5 && timeofdeath && (timeofdeath < 5 || world.time - timeofdeath > revive_grace_period) && !issynth(src)) //We are dead beyond revival, or we're junk mobs spawned like the clowns on the clown shuttle undefibbable = TRUE SEND_SIGNAL(src, COMSIG_HUMAN_SET_UNDEFIBBABLE) med_hud_set_status()