From bf70b70a795c2daa824b0cf5aea60afd3e6e718a Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:59:53 -0400 Subject: [PATCH] Adds a space and changes punctuation in the thanatorenasia ghost offer dialog (#95502) ## About The Pull Request Would you like to play as John Madden.Job: Assistant.Status: Traitor.? ## Why It's Good For The Game Would you like to play as John Madden? Job: Assistant, Status: Traitor? ## Changelog :cl: spellcheck: Changed spacing an punctuation in thanatorenasia offer to ghosts /:cl: --- code/datums/quirks/neutral_quirks/thanatorenasia.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/datums/quirks/neutral_quirks/thanatorenasia.dm b/code/datums/quirks/neutral_quirks/thanatorenasia.dm index 6b2d1303fb8..dbb94cd7db5 100644 --- a/code/datums/quirks/neutral_quirks/thanatorenasia.dm +++ b/code/datums/quirks/neutral_quirks/thanatorenasia.dm @@ -32,10 +32,11 @@ SIGNAL_HANDLER var/whomst = source.real_name - if(source.mind && !is_unassigned_job(source.mind.assigned_role)) - whomst += "Job: [span_notice(source.mind.assigned_role.title)]." + var/workable_job = (source.mind && !is_unassigned_job(source.mind.assigned_role)) + if(workable_job) + whomst += "? Job: [span_notice(source.mind.assigned_role.title)]" if(length(source.mind?.get_special_roles())) - whomst += "Status: [span_boldnotice(english_list(source.mind?.get_special_roles()))]." + whomst += "[workable_job ? "," : "?"] Status: [span_boldnotice(english_list(source.mind?.get_special_roles()))]" source.AddComponent(/datum/component/ghostrole_on_revive, \ refuse_revival_if_failed = TRUE, \