mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 20:16:55 +01:00
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
This commit is contained in:
@@ -117,7 +117,7 @@ emp_act
|
||||
if(!target_zone)
|
||||
visible_message("\red <B>[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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user