diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index a8276070ca0..5a52ccf8c9e 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -363,7 +363,7 @@ dat += "The station is currently undergoing evacuation procedures.
" if(length(job_master.prioritized_jobs)) - dat += "The station has flagged these jobs as high priority: " + dat += "The station has flagged these jobs as high priority: " var/amt = length(job_master.prioritized_jobs) var/amt_count for(var/datum/job/a in job_master.prioritized_jobs) @@ -422,7 +422,10 @@ dat += "
" dat += "[jobcat]" for(var/datum/job/job in categorizedJobs[jobcat]["jobs"]) - dat += "[job.title] ([job.current_positions]) (Active: [activePlayers[job]])
" + if(job in job_master.prioritized_jobs) + dat += "[job.title] ([job.current_positions]) (Active: [activePlayers[job]])
" + else + dat += "[job.title] ([job.current_positions]) (Active: [activePlayers[job]])
" dat += "

" dat += ""