Merge pull request #6212 from Citadel-Station-13/upstream-merge-36824

[MIRROR] Monkeys can now die of bloodloss
This commit is contained in:
LetterJay
2018-04-01 00:59:47 -05:00
committed by GitHub
+2
View File
@@ -20,6 +20,8 @@
//Blood regeneration if there is some space
if(blood_volume < BLOOD_VOLUME_NORMAL)
blood_volume += 0.1 // regenerate blood VERY slowly
if(blood_volume < BLOOD_VOLUME_OKAY)
adjustOxyLoss(round((BLOOD_VOLUME_NORMAL - blood_volume) * 0.02, 1))
// Takes care blood loss and regeneration
/mob/living/carbon/human/handle_blood()