From cd3fb793397360dee24b4e46d0e169c2afc1dba8 Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Wed, 27 Dec 2023 12:29:25 +0000 Subject: [PATCH 1/2] yes --- code/modules/mob/dead/observer/observer.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 430f959a7718..43c84505ce25 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -1213,6 +1213,9 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp . += "" + if(timeofdeath) + . += "Time Since Death: [duration2text_sec(world.time - timeofdeath)]" + if(SSticker.mode?.force_end_at) var/time_left = SSticker.mode.force_end_at - world.time if(time_left >= 0) From bb8a3e4fb17ef99e7e4762000b6155acc4571145 Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Sat, 30 Dec 2023 15:18:41 +0000 Subject: [PATCH 2/2] Moved to after the larva queue --- code/modules/mob/dead/observer/observer.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 43c84505ce25..f1fb19078ceb 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -1213,9 +1213,6 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp . += "" - if(timeofdeath) - . += "Time Since Death: [duration2text_sec(world.time - timeofdeath)]" - if(SSticker.mode?.force_end_at) var/time_left = SSticker.mode.force_end_at - world.time if(time_left >= 0) @@ -1234,6 +1231,10 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if(client.prefs?.be_special & BE_ALIEN_AFTER_DEATH) if(larva_queue_cached_message) . += larva_queue_cached_message + . += "" + + if(timeofdeath) + . += "Time Since Death: [duration2text_sec(world.time - timeofdeath)]" /proc/message_ghosts(message)