From cafbb8035c4480d0581e45c8a30a1cd12d9fd08a Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sun, 5 Apr 2015 14:47:51 -0400 Subject: [PATCH] microfix --- code/modules/mob/living/carbon/human/human_defense.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index e29841092bc..8431b334c75 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -240,7 +240,7 @@ emp_act del(src) var/obj/item/organ/external/affecting = get_organ(ran_zone(user.zone_sel.selecting)) - if(affecting.is_stump() || !affecting || affecting.status & ORGAN_DESTROYED) + if(!affecting || affecting.is_stump() || (affecting.status & ORGAN_DESTROYED)) user << "They are missing that limb!" return 1 var/hit_area = affecting.name