From 3355240010addd176a390a3a436a8841476328e9 Mon Sep 17 00:00:00 2001 From: TalkingCactus Date: Tue, 23 Aug 2016 22:06:59 -0400 Subject: [PATCH] let's go farther --- code/modules/mob/living/carbon/human/species_types.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index 95d47e97f3..cdb4f94b07 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -263,17 +263,17 @@ H << "You feel intact enough as it is." return H << "You focus intently on your missing [limbs_to_heal.len >= 2 ? "limbs" : "limb"]..." - if(H.blood_volume >= 100*limbs_to_heal.len+BLOOD_VOLUME_OKAY) + if(H.blood_volume >= 150*limbs_to_heal.len+BLOOD_VOLUME_OKAY) H.regenerate_limbs() - H.blood_volume -= 100*limbs_to_heal.len + H.blood_volume -= 150*limbs_to_heal.len H << "...and after a moment you finish reforming!" return - else if(H.blood_volume >= 100)//We can partially heal some limbs - while(H.blood_volume >= BLOOD_VOLUME_OKAY+100) + else if(H.blood_volume >= 150)//We can partially heal some limbs + while(H.blood_volume >= BLOOD_VOLUME_OKAY+150) var/healed_limb = pick(limbs_to_heal) H.regenerate_limb(healed_limb) limbs_to_heal -= healed_limb - H.blood_volume -= 100 + H.blood_volume -= 150 H << "...but there is not enough of you to fix everything! You must attain more mass to heal completely!" return H << "...but there is not enough of you to go around! You must attain more mass to heal!"