From 279bcc185118eaa2e21f1baacd20adb5cf861f4f Mon Sep 17 00:00:00 2001 From: cib Date: Mon, 6 Aug 2012 13:13:40 -0700 Subject: [PATCH] Reduced blood regen significantly. --- code/modules/mob/living/carbon/human/life.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 20c6cb99a73..153ad5d7a13 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -984,11 +984,11 @@ B.volume = max(min(10 + blood_volume,560), 0) F.volume -= 1 else - var/blood_regen = 0.5 + var/blood_regen = 0.1 if(B.volume < 400) - blood_regen = 1 + blood_regen = 0.2 if(B.volume < 200) - blood_regen = 1.5 + blood_regen = 0.3 B.volume = max(min(B.volume + blood_regen,560), 0)