Fix job title in head arrival radio messages being empty (#2255)

## About The Pull Request

Add back the `|| job.title` fallback for if the user isn't using an alt
job title for a given job, because it went missing in
https://github.com/Skyrat-SS13/Skyrat-tg/pull/23990 for some reason

## Why It's Good For The Game

Fixes #2214 

## Proof Of Testing

<details>
<summary>Screenshots/Videos</summary>


![image](https://github.com/user-attachments/assets/6a857a35-1f0f-49b0-b61b-2a615be04183)

</details>

## Changelog

🆑
fix: fixed department head arrival radio messages missing their job
title
/🆑
This commit is contained in:
Roxy
2024-10-22 20:23:34 -04:00
committed by GitHub
parent d4e9fbe514
commit fe4481677f
+1 -1
View File
@@ -561,7 +561,7 @@ SUBSYSTEM_DEF(job)
/datum/controller/subsystem/job/proc/EquipRank(mob/living/equipping, datum/job/job, client/player_client)
// SKYRAT EDIT ADDITION BEGIN - ALTERNATIVE_JOB_TITLES
// The alt job title, if user picked one, or the default
var/alt_title = player_client?.prefs.alt_job_titles[job.title]
var/alt_title = player_client?.prefs.alt_job_titles[job.title] || job.title
// SKYRAT EDIT ADDITION END
equipping.job = job.title