From 7c6845b750693eafa8999fdc4d32f1652abca216 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 1 Apr 2018 01:17:28 -0400 Subject: [PATCH 1/2] Merge pull request #36824 from Robustin/mblood Monkeys can now die of bloodloss --- code/modules/mob/living/blood.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/blood.dm b/code/modules/mob/living/blood.dm index 41715d650d..68c6ed5c83 100644 --- a/code/modules/mob/living/blood.dm +++ b/code/modules/mob/living/blood.dm @@ -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()