From 9bdc62fae3509fdfe0dd41f33ccd593b62c82711 Mon Sep 17 00:00:00 2001 From: Matt Smith Date: Wed, 31 Dec 2014 21:35:23 +0000 Subject: [PATCH] Fixing initial ear_damage Was missing a 0. --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 3c22e179800..4573f7df6af 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -481,7 +481,7 @@ if (ear_damage < 100) // Heal the first 1/3 here ear_deaf = max(ear_deaf - 1, 0) - ear_damage = max(ear_damage-0.5, 0) + ear_damage = max(ear_damage-0.05, 0) if(istype(ears, /obj/item/clothing/ears/earmuffs)) // earmuffs rest your ears, healing 3x faster, but keeping you deaf. // Heal the 2/3 here ear_deaf = max(ear_deaf, 1)