From a0decbfd91305ef51fcb216364294390bbd88f7f Mon Sep 17 00:00:00 2001 From: Poojawa Date: Wed, 11 Sep 2019 04:37:46 -0500 Subject: [PATCH] Human magic revival does bleeding heal --- code/modules/mob/living/carbon/human/human.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index d875644f5f..71abb16f82 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -813,6 +813,8 @@ for(var/datum/mutation/human/HM in dna.mutations) if(HM.quality != POSITIVE) dna.remove_mutation(HM.name) + if(bleed_rate) + bleed_rate = 0 if(blood_volume < (BLOOD_VOLUME_NORMAL*blood_ratio)) blood_volume = (BLOOD_VOLUME_NORMAL*blood_ratio) ..()