From d367d6ca8a1ff2c02c5e34aec4d93733e589aa6a Mon Sep 17 00:00:00 2001 From: Ccomp5950 Date: Thu, 28 Nov 2013 19:05:48 -0600 Subject: [PATCH] Bugfix for new traitor panel. Bad indention, very bad indentation! And else was under the wrong IF and was causing the traitor options line to not show up. --- code/datums/mind.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 82a26dab65..511731195e 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -241,13 +241,13 @@ datum/mind if(istype(current, /mob/living/carbon/human)) if (H.is_loyalty_implanted(H)) text +="traitor|LOYAL EMPLOYEE" - else - if (src in ticker.mode.traitors) - text += "TRAITOR|Employee" - if (objectives.len==0) - text += "
Objectives are empty! Randomize!" else - text += "traitor|Employee" + if (src in ticker.mode.traitors) + text += "TRAITOR|Employee" + if (objectives.len==0) + text += "
Objectives are empty! Randomize!" + else + text += "traitor|Employee" sections["traitor"] = text /** MONKEY ***/