From 2849f82d0b88f1d0c4e2406edc207de43256bc4b Mon Sep 17 00:00:00 2001 From: Poojawa Date: Fri, 30 Aug 2019 03:15:46 -0500 Subject: [PATCH] let's be sure people don't have negative bleeding, because that would be weird as fuck. --- code/modules/mob/living/blood.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/blood.dm b/code/modules/mob/living/blood.dm index 84578cfb0a..d676690b4c 100644 --- a/code/modules/mob/living/blood.dm +++ b/code/modules/mob/living/blood.dm @@ -33,6 +33,10 @@ bleed_rate = 0 return + if(bleed_rate <= 0) + bleed_rate = 0 + return + if(bodytemperature >= TCRYO && !(HAS_TRAIT(src, TRAIT_NOCLONE))) //cryosleep or husked people do not pump the blood. //Blood regeneration if there is some space