Skip to content

Commit

Permalink
Fixing initial ear_damage
Browse files Browse the repository at this point in the history
Was missing a 0.
  • Loading branch information
psykzz committed Dec 31, 2014
1 parent 1f8c748 commit 9bdc62f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/life.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9bdc62f

Please sign in to comment.