Skip to content

Commit

Permalink
Fixes get hand offset proc (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
DTraitor authored Sep 16, 2023
1 parent 8ec6e3d commit 6ac143f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/interaction_particle/interaction_particle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
return list(0, 0)

/mob/living/carbon/get_hand_pixels()
var/obj/item/bodypart/hand = has_active_hand()
var/obj/item/bodypart/hand = has_active_hand() ? get_active_hand() : null
if(!hand)
return null
else
Expand Down

0 comments on commit 6ac143f

Please sign in to comment.