From 8d61d47506efc352a263cf0de60afc56b39beb62 Mon Sep 17 00:00:00 2001 From: Ben10083 Date: Wed, 19 Jul 2023 16:14:56 -0400 Subject: [PATCH] ghost same check --- code/modules/mob/dead/observer/observer.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 2eb42b091df5..ac67471ce30f 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -420,6 +420,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp // Larva queue: We use the larger of their existing queue time or the new timeofdeath except for facehuggers var/new_tod = isfacehugger(src) ? 1 : world.time + ghost.bypass_time_of_death_checks = isfacehugger(src) ghost.client?.player_details.larva_queue_time = max(ghost.client.player_details.larva_queue_time, new_tod) if(is_nested && nest && !QDELETED(nest)) ghost.can_reenter_corpse = FALSE