From e2158e4f7dc1df3ac7bb985d7714029d21903d14 Mon Sep 17 00:00:00 2001 From: Leo Date: Sat, 11 Mar 2017 12:15:36 -0300 Subject: [PATCH] Fixes being able to join as mutant in command roles (#24936) --- code/modules/jobs/job_types/job.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/jobs/job_types/job.dm b/code/modules/jobs/job_types/job.dm index 9da28384086..ea43fa17372 100644 --- a/code/modules/jobs/job_types/job.dm +++ b/code/modules/jobs/job_types/job.dm @@ -70,7 +70,7 @@ if(!visualsOnly && announce) announce(H) - if(config.enforce_human_authority && src in command_positions) + if(config.enforce_human_authority && (title in command_positions)) H.dna.features["tail_human"] = "None" H.dna.features["ears"] = "None" H.regenerate_icons()