From 3956d0285f35f6569841ff4f5c296b2c54950bf4 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Thu, 21 Nov 2019 02:28:34 -0700 Subject: [PATCH] Fix early-joining and alt-job title preference Removed two lines of code that was FORCING the game to look at the whitelist to even allow early joiners a job/role and their own job title. --- code/game/jobs/job_controller.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 85555b43f7..5396c9bb29 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -59,8 +59,6 @@ var/global/datum/controller/occupations/job_master return 0 if(!job.player_old_enough(player.client)) return 0 - if(!check_whitelist(player)) // Yeah no, no more hardcoded whitelisting. Ree. - Jon. - return 0 if(!is_job_whitelisted(player, rank)) //VOREStation Code return 0