From d2ffa0def679a365bb09af16f99b918465ba3b05 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Sun, 17 Sep 2017 01:20:29 -0400 Subject: [PATCH] fixed. 100% fixed. i hope. --- code/citadel/crew_objectives/cit_crewobjectives_civilian.dm | 2 +- code/citadel/crew_objectives/cit_crewobjectives_engineering.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm index 69307ed7f7..a3bc8e10df 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm @@ -221,6 +221,6 @@ var/mob/living/carbon/human/H = owner.current 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") + if(!(H.get_assignment() == "Assistant") && !(H.get_assignment() == "No id") && !(H.get_assignment() == "No job")) return TRUE return FALSE diff --git a/code/citadel/crew_objectives/cit_crewobjectives_engineering.dm b/code/citadel/crew_objectives/cit_crewobjectives_engineering.dm index bb042f50aa..5c2f9bd03d 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_engineering.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_engineering.dm @@ -28,7 +28,7 @@ /datum/objective/crew/chiefengineer/poly/check_completion() for(var/mob/living/simple_animal/parrot/Poly/dumbbird in GLOB.mob_list) - if(!dumbbird.stat == DEAD && dumbbird.ears) + if(!(dumbbird.stat == DEAD) && dumbbird.ears) if(istype(dumbbird.ears, /obj/item/device/radio/headset)) return TRUE return FALSE