From c1078c2c3ee1636d73a9116c8c8b4b9ae394e6eb Mon Sep 17 00:00:00 2001 From: deathride58 Date: Fri, 8 Sep 2017 17:56:42 -0400 Subject: [PATCH] eugh --- code/citadel/crew_objectives/cit_crewobjectives_civilian.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm index 008ee69996..c7324c2ff6 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm @@ -219,7 +219,8 @@ /datum/objective/crew/assistant/promotion/check_completion() if(owner.current) var/mob/living/carbon/human/H = owner.current - if(istype(H.get_idcard())) + var/obj/item/card/id/theID = H.get_idcard() + if(istype(theID)) if(!H.get_assignment() == "Assistant" && !H.get_assignment() == "No id" && !H.get_assignment() == "No job") return 1 return 0 \ No newline at end of file