From fef4c82464987ef24d7519006877cb914ee9b9fa Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Tue, 10 Mar 2020 17:18:53 -0700 Subject: [PATCH] Update living.dm --- code/modules/mob/living/living.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 0c69c5c744..a46d546baa 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -490,7 +490,8 @@ GLOB.alive_mob_list += src suiciding = 0 stat = UNCONSCIOUS //the mob starts unconscious, - blind_eyes(1) + if(!blind_eyes) + blind_eyes(1) updatehealth() //then we check if the mob should wake up. update_mobility() update_sight()