From 19846abebe456fb8d03d4e8a426a555603019ce7 Mon Sep 17 00:00:00 2001 From: cib Date: Mon, 15 Oct 2012 15:13:49 +0200 Subject: [PATCH] Halved bleeding speed. --- 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 bb38be8b039..99cd4f95926 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -190,7 +190,7 @@ if(!(temp.status & ORGAN_BLEEDING) || temp.status & ORGAN_ROBOT) continue for(var/datum/wound/W in temp.wounds) if(W.bleeding()) - blood_max += W.damage / 2 + blood_max += W.damage / 4 if(temp.status & ORGAN_DESTROYED && !(temp.status & ORGAN_GAUZED)) blood_max += 20 //Yer missing a fucking limb. drip(blood_max)