From b81d0f123440286f4067c6942a6279d012d608ed Mon Sep 17 00:00:00 2001 From: Asanadas Date: Sun, 12 May 2013 02:19:56 -0400 Subject: [PATCH] carnie umm, dunno if you guys have this bug: mobs not getting bloodyhands etc? carnie do a find-all for "//people with TK won't get smeared with blood" without the quotes carnie the > on that line should be a <= carnie erro's to blame carnie Mport provided the fix Asanadas if you say so, strange IRC man --- code/modules/mob/living/carbon/human/human_defense.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 249b72a4c4..214100d2cc 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -117,7 +117,7 @@ emp_act if(!target_zone) visible_message("\red [user] misses [src] with \the [I]!") return - + var/datum/organ/external/affecting = get_organ(target_zone) if (!affecting) return @@ -152,7 +152,7 @@ emp_act location.add_blood(src) if(ishuman(user)) var/mob/living/carbon/human/H = user - if(get_dist(H, src) > 1) //people with TK won't get smeared with blood + if(get_dist(H, src) <= 1) //people with TK won't get smeared with blood H.bloody_body(src) H.bloody_hands(src)