From b95692e484c45134ecfe724b74a786aef1c1b772 Mon Sep 17 00:00:00 2001 From: Daranz Date: Wed, 13 May 2015 13:58:37 -0400 Subject: [PATCH] Fix a problem in human/has_eyes() --- code/modules/mob/living/carbon/human/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index ccbf129293d..1cd30fe9ba7 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1300,7 +1300,7 @@ /mob/living/carbon/human/has_eyes() if(internal_organs_by_name["eyes"]) var/datum/organ/internal/eyes = internal_organs_by_name["eyes"] - if(eyes && istype(eyes) && !eyes.status & ORGAN_CUT_AWAY) + if(eyes && istype(eyes) && !(eyes.status & ORGAN_CUT_AWAY)) return 1 return 0