Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
AndroBetel committed Apr 28, 2024
1 parent e74e9c4 commit aea511a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions code/modules/mob/living/carbon/human/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1687,3 +1687,11 @@
INVOKE_ASYNC(target, TYPE_PROC_REF(/mob/living/carbon/human, regenerate_icons))
INVOKE_ASYNC(target, TYPE_PROC_REF(/mob/living/carbon/human, update_body), 1, 0)
INVOKE_ASYNC(target, TYPE_PROC_REF(/mob/living/carbon/human, update_hair))

/mob/living/carbon/human/point_to_atom(atom/A, turf/T)
if(isitem(A))
var/obj/item/item = A
if(item == get_active_hand() || item == get_inactive_hand())
item.showoff(src)
return TRUE
..()

0 comments on commit aea511a

Please sign in to comment.