From 8b89afa124ba6e15045ee162549e2db96b7077a8 Mon Sep 17 00:00:00 2001 From: harryob <55142896+harryob@users.noreply.github.com> Date: Thu, 24 Aug 2023 10:07:22 +0100 Subject: [PATCH] unwraps this --- 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 b9a4216a9468..c9092ed479b9 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1394,7 +1394,7 @@ if(glasses) process_glasses(glasses) - if(!(sight & (SEE_TURFS|SEE_OBJS|SEE_TURFS))) + if(!(sight & SEE_TURFS) && !(sight & SEE_MOBS) && !(sight & SEE_OBJS)) sight |= SEE_BLACKNESS SEND_SIGNAL(src, COMSIG_HUMAN_POST_UPDATE_SIGHT)