From d153830534cdb30c620bc2d2f7e9f1ee8774f0d6 Mon Sep 17 00:00:00 2001 From: iramoye Date: Thu, 22 Jan 2026 20:08:13 -0600 Subject: [PATCH] Adds an isskeleton() check to spooky xylophone playing (#31485) * surely * this salad sucks --- code/modules/mob/living/carbon/carbon_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/carbon_procs.dm b/code/modules/mob/living/carbon/carbon_procs.dm index 3cd980954c9..4086c8632ac 100644 --- a/code/modules/mob/living/carbon/carbon_procs.dm +++ b/code/modules/mob/living/carbon/carbon_procs.dm @@ -400,7 +400,7 @@ to_chat(src, chat_box_examine(status_list.Join("
"))) - if(HAS_TRAIT(H, TRAIT_SKELETONIZED) && (!H.w_uniform) && (!H.wear_suit)) + if((isskeleton(H) || HAS_TRAIT(H, TRAIT_SKELETONIZED)) && (!H.w_uniform) && (!H.wear_suit)) H.play_xylophone() /mob/living/carbon/can_be_flashed(intensity = 1, override_blindness_check = 0)