From 83adeac43aefd8556ec667213e9b79dd09bbbf49 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 8 Jun 2016 03:56:03 -0500 Subject: [PATCH] Fixes explosive dismemberment not damaging limbs --- code/modules/mob/living/carbon/human/human.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 8d8608910fb..42b04aaedb4 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -164,6 +164,7 @@ for(var/X in bodyparts) var/obj/item/bodypart/BP = X if(prob(50/severity) && !prob(getarmor(BP, "bomb")) && BP.body_zone != "head" && BP.body_zone != "chest") + BP.brute_dam = BP.max_damage BP.dismember() max_limb_loss-- if(!max_limb_loss)