From af7ad3e620541514c93fda91af45e96cf6ac6200 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Tue, 5 Sep 2017 01:21:18 -0400 Subject: [PATCH] reee --- code/citadel/cit_crewobjectives.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/citadel/cit_crewobjectives.dm b/code/citadel/cit_crewobjectives.dm index 63a0347951..7d396e3e33 100644 --- a/code/citadel/cit_crewobjectives.dm +++ b/code/citadel/cit_crewobjectives.dm @@ -215,7 +215,7 @@ /datum/objective/crew/chiefmedicalofficer/morgue/check_completion() for(var/mob/living/carbon/human/H in GLOB.mob_list) if(H.stat == DEAD && H.z == ZLEVEL_STATION) - if(get_area.H != /area/medical/morgue) + if(get_area(H) != /area/medical/morgue) return 0 return 1 @@ -227,7 +227,7 @@ /datum/objective/crew/geneticist/morgue/check_completion() for(var/mob/living/carbon/human/H in GLOB.mob_list) if(H.stat == DEAD && H.z == ZLEVEL_STATION) - if(get_area.H != /area/medical/morgue) + if(get_area(H) != /area/medical/morgue) return 0 return 1 @@ -239,7 +239,7 @@ /datum/objective/crew/medicaldoctor/morgue/check_completion() for(var/mob/living/carbon/human/H in GLOB.mob_list) if(H.stat == DEAD && H.z == ZLEVEL_STATION) - if(get_area.H != /area/medical/morgue) + if(get_area(H) != /area/medical/morgue) return 0 return 1