From 67b120813d8cf7961ed2fbf35942e2e6c06d5bbd Mon Sep 17 00:00:00 2001 From: Phantastic-Swan Date: Wed, 4 Feb 2026 15:26:09 +0100 Subject: [PATCH] fixes alternate job titles not showing when a new head joins (#5212) ## About The Pull Request Fixes the departmental announcement of a new head joining. Before: Image After: image ## Why It's Good For The Game Fixes a bug. ## Proof Of Testing image ## Changelog :cl: Swan fix: fixes the departmental head joining announcement /:cl: --- code/modules/jobs/job_types/_job.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/jobs/job_types/_job.dm b/code/modules/jobs/job_types/_job.dm index 7b3d4e01842..ef2afbbb4f1 100644 --- a/code/modules/jobs/job_types/_job.dm +++ b/code/modules/jobs/job_types/_job.dm @@ -201,7 +201,7 @@ /// Note the joining mob has no client at this point. /datum/job/proc/announce_job(mob/living/joining_mob, job_title) // SKYRAT EDIT CHANGE - ALTERNATIVE_JOB_TITLES - Original: /datum/job/proc/announce_job(mob/living/joining_mob) if(head_announce) - announce_head(joining_mob, list(head_announce)) + announce_head(joining_mob, list(head_announce), job_title) // BUBBER EDIT - fixes alternative job titles //Used for a special check of whether to allow a client to latejoin as this job.