From aa7855319746d4f68bb8d3bbdc7a6e15f46ddbd3 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Wed, 23 Apr 2025 18:03:05 +0200 Subject: [PATCH] Fixes AI not getting creampie face decals (#90762) ## About The Pull Request Closes #90749 ## Changelog :cl: fix: Fixed AI not getting creampie face decals /:cl: --- code/datums/components/face_decal.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/face_decal.dm b/code/datums/components/face_decal.dm index 6ba57aa2f01..28a575169c9 100644 --- a/code/datums/components/face_decal.dm +++ b/code/datums/components/face_decal.dm @@ -132,7 +132,7 @@ GLOBAL_LIST_INIT(splattable, zebra_typecacheof(list( src.mood_event_type = mood_event_type /datum/component/face_decal/splat/get_normal_overlay() - return mutable_appearance('icons/mob/effects/face_decal.dmi', "[icon_state]_[GLOB.splattable[type]]") + return mutable_appearance('icons/mob/effects/face_decal.dmi', "[icon_state]_[is_type_in_list(parent, GLOB.splattable, zebra = TRUE)]") /datum/component/face_decal/splat/RegisterWithParent() . = ..()