Skip to content

Commit

Permalink
kills soul departed message on unowned bodies (#2349)
Browse files Browse the repository at this point in the history
## 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:
  • Loading branch information
Skrem7 authored Sep 13, 2023
1 parent bea48e5 commit c4b2ff6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/mob/living/carbon/human/examine.dm
Original file line number Diff line number Diff line change
@@ -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()
Expand Down Expand Up @@ -126,7 +127,7 @@
. += "<span class='warning'>[t_His] soul seems to have been ripped out of [t_his] body. Revival is impossible.</span>"
. += ""
if(getorgan(/obj/item/organ/brain) && !key && !get_ghost(FALSE, TRUE))
. += "<span class='deadsay'>[t_He] [t_is] limp and unresponsive; there are no signs of life and [t_his] soul has departed...</span>"
. += "<span class='deadsay'>[t_He] [t_is] limp and unresponsive; there are no signs of life and [t_he] won't be coming back...</span>"
else
. += "<span class='deadsay'>[t_He] [t_is] limp and unresponsive; there are no signs of life...</span>"

Expand Down

0 comments on commit c4b2ff6

Please sign in to comment.