From 1617a43685507dec8706be8f7de43739f6138aec Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 27 Dec 2015 17:27:19 +1030 Subject: [PATCH] Applying Harpy's prosthetic limb damage fix. --- code/modules/mob/living/carbon/human/human_damage.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index 1c3f070b963..2feecc18846 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -8,8 +8,8 @@ var/total_burn = 0 var/total_brute = 0 for(var/obj/item/organ/external/O in organs) //hardcoded to streamline things a bit - if(O.status & ORGAN_ROBOT) - continue //robot limbs don't count towards shock and crit + if((O.status & ORGAN_ROBOT) && !O.vital) + continue // Non-vital robot limbs don't count towards shock and crit total_brute += O.brute_dam total_burn += O.burn_dam