mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-18 06:01:56 +00:00
Merge pull request #2750 from Asanadas/master
Bugfix: Fix for bloody hands not occurring.
This commit is contained in:
@@ -117,7 +117,7 @@ emp_act
|
|||||||
if(!target_zone)
|
if(!target_zone)
|
||||||
visible_message("\red <B>[user] misses [src] with \the [I]!")
|
visible_message("\red <B>[user] misses [src] with \the [I]!")
|
||||||
return
|
return
|
||||||
|
|
||||||
var/datum/organ/external/affecting = get_organ(target_zone)
|
var/datum/organ/external/affecting = get_organ(target_zone)
|
||||||
if (!affecting)
|
if (!affecting)
|
||||||
return
|
return
|
||||||
@@ -152,7 +152,7 @@ emp_act
|
|||||||
location.add_blood(src)
|
location.add_blood(src)
|
||||||
if(ishuman(user))
|
if(ishuman(user))
|
||||||
var/mob/living/carbon/human/H = 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_body(src)
|
||||||
H.bloody_hands(src)
|
H.bloody_hands(src)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user