diff --git a/code/modules/surgery/organs/eyes.dm b/code/modules/surgery/organs/eyes.dm index ea38d4fc3b9..591bd7a58ce 100644 --- a/code/modules/surgery/organs/eyes.dm +++ b/code/modules/surgery/organs/eyes.dm @@ -530,6 +530,7 @@ /obj/item/organ/internal/eyes/snail name = "snail eyes" desc = "These eyes seem to have a large range, but might be cumbersome with glasses." + icon = 'modular_skyrat/master_files/icons/mob/human_face.dmi' //SKYRAT EDIT - Roundstart Snails eye_icon_state = "snail_eyes" icon_state = "snail_eyeballs" eyes_layer = ABOVE_BODY_FRONT_HEAD_LAYER //SKYRAT EDIT - Roundstart Snails diff --git a/modular_skyrat/master_files/icons/mob/human_face.dmi b/modular_skyrat/master_files/icons/mob/human_face.dmi index f5e7c2099a8..f71d0216e90 100644 Binary files a/modular_skyrat/master_files/icons/mob/human_face.dmi and b/modular_skyrat/master_files/icons/mob/human_face.dmi differ diff --git a/modular_skyrat/modules/customization/modules/mob/living/carbon/human/species.dm b/modular_skyrat/modules/customization/modules/mob/living/carbon/human/species.dm index d45e6e08c82..6e29f6ea074 100644 --- a/modular_skyrat/modules/customization/modules/mob/living/carbon/human/species.dm +++ b/modular_skyrat/modules/customization/modules/mob/living/carbon/human/species.dm @@ -384,6 +384,11 @@ GLOBAL_LIST_EMPTY(customizable_races) eye_emissive.pixel_y += species_human.dna.species.offset_features[OFFSET_FACE][2] standing += eye_emissive + // blush + if (HAS_TRAIT(species_human, TRAIT_BLUSHING)) // Caused by either the *blush emote or the "drunk" mood event + var/mutable_appearance/blush_overlay = mutable_appearance('icons/mob/human_face.dmi', "blush", -BODY_ADJ_LAYER) //should appear behind the eyes + blush_overlay.color = COLOR_BLUSH_PINK + standing += blush_overlay //Underwear, Undershirts & Socks if(!(NO_UNDERWEAR in species_traits))