From 05840b7aba6a4555e9f571213227a3495ab7dff5 Mon Sep 17 00:00:00 2001 From: Yoshax Date: Wed, 31 Aug 2016 00:00:34 +0100 Subject: [PATCH] Increases the change of lung rupturing --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index cfc61cef5c..fee0169939 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -345,7 +345,7 @@ if(should_have_organ(O_LUNGS)) var/obj/item/organ/internal/lungs/L = internal_organs_by_name[O_LUNGS] - if(!L.is_bruised() && prob(5)) + if(!L.is_bruised() && prob(8)) if(breath.total_moles) if(breath.total_moles < BREATH_MOLES / 5 || breath.total_moles > BREATH_MOLES * 5) rupture_lung()