From b31e6cf7571fdc424229dd5af6b13bdf98a244e6 Mon Sep 17 00:00:00 2001 From: PsiOmegaDelta Date: Sun, 7 Feb 2016 22:10:38 +0100 Subject: [PATCH] Fixes #12131. Blindness/deafness now check the correct disability var (we have two for some reason, very practical). --- code/modules/mob/living/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm index e6eab093e86..111604848ad 100644 --- a/code/modules/mob/living/life.dm +++ b/code/modules/mob/living/life.dm @@ -153,7 +153,7 @@ eye_blurry = max(eye_blurry-1, 0) //Ears - if(disabilities & DEAF) //disabled-deaf, doesn't get better on its own + if(sdisabilities & DEAF) //disabled-deaf, doesn't get better on its own setEarDamage(-1, max(ear_deaf, 1)) else // deafness heals slowly over time, unless ear_damage is over 100