diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index 5f7b22446c8..ec94ec189f9 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -325,12 +325,6 @@ There are several things that need to be remembered: else base_icon.Blend(temp, ICON_OVERLAY) - part.cut_additional_images(src) - var/list/add_images = part.get_additional_images(src) - if(add_images) - add_overlay(add_images, TRUE) - compile_overlays() - if(!(species.flags & NO_SCAN)) if(husk) base_icon.ColorTone(husk_color_mod) @@ -345,6 +339,14 @@ There are several things that need to be remembered: SSicon_cache.human_icon_cache[icon_key] = base_icon + for(var/thing in organs) + var/obj/item/organ/external/part = thing + part.cut_additional_images(src) + var/list/add_images = part.get_additional_images(src) + if(add_images) + add_overlay(add_images, TRUE) + compile_overlays() + //END CACHED ICON GENERATION. stand_icon.Blend(base_icon,ICON_OVERLAY) diff --git a/html/changelogs/geeves-revenant_eye_fix.yml b/html/changelogs/geeves-revenant_eye_fix.yml new file mode 100644 index 00000000000..4af81cc7a7c --- /dev/null +++ b/html/changelogs/geeves-revenant_eye_fix.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "Fixes some parts of the revenant's body not appearing." \ No newline at end of file