diff --git a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm index 15c115128c..c19059c85c 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm @@ -216,6 +216,6 @@ if(owner.current) var/mob/living/carbon/human/H = owner.current if(istype(H.get_idcard()) - if(!H.get_assignment == "Assistant" && !H.get_assignment == "No id" && !H.get_assignment == "No job") + 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 diff --git a/code/citadel/crew_objectives/cit_crewobjectives_engineering.dm b/code/citadel/crew_objectives/cit_crewobjectives_engineering.dm index 20347c1e60..38d113f764 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_engineering.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_engineering.dm @@ -29,7 +29,7 @@ /datum/objective/crew/chiefengineer/poly/check_completion() for(var/mob/living/simple_animal/pet/parrot/Poly/dumbbird in GLOB.mob_list) if(!dumbbird.stat == DEAD && dumbbird.ears) - if(istype(dumbbird.ears, /obj/item/device/radio/headset) + if(istype(dumbbird.ears, /obj/item/device/radio/headset)) return 1 return 0