Merge pull request #36824 from Robustin/mblood

Monkeys can now die of bloodloss
This commit is contained in:
Jordan Brown
2018-04-01 01:17:28 -04:00
committed by CitadelStationBot
parent c670eaa613
commit 7c6845b750
+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()