From d4b44bc7b0b6d715008c4f40db252e5d620a1c09 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Fri, 22 Nov 2013 08:22:34 -0500 Subject: [PATCH] No more whitelisted jobs for randoms! --- code/game/jobs/job_controller.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 0e8e8861901..bfb3bf5909f 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -113,6 +113,9 @@ var/global/datum/controller/occupations/job_master if(job in command_positions) //If you want a command position, select it! continue + if(job in whitelisted_positions) // No random whitelisted job, sorry! + continue + if(jobban_isbanned(player, job.title)) Debug("GRJ isbanned failed, Player: [player], Job: [job.title]") continue