From e9e51ccb026b0871e4a7953db26b74ee6f68e509 Mon Sep 17 00:00:00 2001 From: Yoshax Date: Mon, 8 Aug 2016 15:47:53 +0100 Subject: [PATCH] Fixes lung rupturing --- code/modules/mob/living/carbon/human/life.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 39d190ddcd2..a58e1c3a68e 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -343,6 +343,9 @@ else adjustOxyLoss(HUMAN_CRIT_MAX_OXYLOSS) + if(prob(5)) + rupture_lung() + oxygen_alert = max(oxygen_alert, 1) return 0