From c4b2ff644d45ae8e85f370c002f1279e170de3ea Mon Sep 17 00:00:00 2001
From: Skrem_7 <98909416+Skrem7@users.noreply.github.com>
Date: Wed, 13 Sep 2023 12:38:12 -0500
Subject: [PATCH] kills soul departed message on unowned bodies (#2349)
## About The Pull Request
Alternative message for when a body doesn't have a ckey attached to it
![image](https://github.com/shiptest-ss13/Shiptest/assets/98909416/dafbce97-e469-45ce-97bc-448494f6a4de)
## Why It's Good For The Game
1) Removes soul
2) Direct references to souls are generally frowned upon by the Great
State of Lorema, Democratic Nation of Shiptest, Setting Building, and
Intellectual Discourse
3) Less confusing to new players (soul departed means absolutely nothing
to anyone who hasn't played SS13)
## Changelog
:cl:
spellcheck: Bodies that lack ownership are no longer described as
"soulless"
/:cl:
---
code/modules/mob/living/carbon/human/examine.dm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm
index 42dd3f9ba1e3..a260f164829f 100644
--- a/code/modules/mob/living/carbon/human/examine.dm
+++ b/code/modules/mob/living/carbon/human/examine.dm
@@ -1,6 +1,7 @@
/mob/living/carbon/human/examine(mob/user)
//this is very slightly better than it was because you can use it more places. still can't do \his[src] though.
var/t_He = p_they(TRUE)
+ var/t_he = p_they()
var/t_His = p_their(TRUE)
var/t_his = p_their()
var/t_him = p_them()
@@ -126,7 +127,7 @@
. += "[t_His] soul seems to have been ripped out of [t_his] body. Revival is impossible."
. += ""
if(getorgan(/obj/item/organ/brain) && !key && !get_ghost(FALSE, TRUE))
- . += "[t_He] [t_is] limp and unresponsive; there are no signs of life and [t_his] soul has departed..."
+ . += "[t_He] [t_is] limp and unresponsive; there are no signs of life and [t_he] won't be coming back..."
else
. += "[t_He] [t_is] limp and unresponsive; there are no signs of life..."