Skip to content

Commit

Permalink
FIX: Allow Skeleton Race plays on his Bones (#3709)
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneAsket authored Oct 17, 2023
1 parent 0597307 commit 713a192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/carbon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@
to_chat(src, "<span class='info'>Вы полностью истощены.</span>")
else
to_chat(src, "<span class='info'>Вы чувствуете усталость.</span>")
if((SKELETON in H.mutations) && (!H.w_uniform) && (!H.wear_suit))
if((isskeleton(H) || (SKELETON in H.mutations)) && (!H.w_uniform) && (!H.wear_suit))
H.play_xylophone()


Expand Down

0 comments on commit 713a192

Please sign in to comment.