From 20bf7f6a2b91620f52e5fa6a8217fa6c5416dfbe Mon Sep 17 00:00:00 2001 From: Whitellama Date: Wed, 21 Nov 2012 22:02:18 -0800 Subject: [PATCH] Fixed the lack of job alt-titles in Crew Manifest --- code/datums/datacore.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm index 2522523e4d7..e07e6687ac5 100644 --- a/code/datums/datacore.dm +++ b/code/datums/datacore.dm @@ -28,7 +28,9 @@ /obj/effect/datacore/proc/manifest_inject(var/mob/living/carbon/human/H) if(H.mind && (H.mind.assigned_role != "MODE")) var/assignment - if(H.mind.assigned_role) + if(H.mind.role_alt_title) + assignment = H.mind.role_alt_title + else if(H.mind.assigned_role) assignment = H.mind.assigned_role else if(H.job) assignment = H.job