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