diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 906610f32af..ec0abe5a60b 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -127,10 +127,10 @@ var/global/datum/controller/occupations/job_master if(istype(job, GetJob("Civilian"))) // We don't want to give him assistant, that's boring! continue - if(job in command_positions) //If you want a command position, select it! + if(job.title in command_positions) //If you want a command position, select it! continue - if(job in whitelisted_positions) // No random whitelisted job, sorry! + if(job.title in whitelisted_positions) // No random whitelisted job, sorry! continue if(jobban_isbanned(player, job.title))