From 6853a69b1ff24dcb0f6f8d4b8f8591a20c2f2787 Mon Sep 17 00:00:00 2001 From: Bone White Date: Mon, 27 Oct 2014 15:53:35 +0000 Subject: [PATCH] Bulletproofing Better bulletproofing of the civilian round-start fix --- code/game/jobs/job_controller.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 9d47d3582d5..8ccd40f49d1 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -113,7 +113,7 @@ var/global/datum/controller/occupations/job_master if(player.client.prefs.GetJobDepartment(job, level) & job.flag) Debug("FOC pass, Player: [player], Level:[level]") candidates += player - if(job.flag == CIVILIAN) + else if(job.flag == CIVILIAN) Debug("FOC pass, Player: [player], Level: **Civilian Autopass**") candidates += player return candidates