diff --git a/code/modules/mob/living/carbon/human/_species.dm b/code/modules/mob/living/carbon/human/_species.dm index ac449c7794c9..18c838b8367a 100644 --- a/code/modules/mob/living/carbon/human/_species.dm +++ b/code/modules/mob/living/carbon/human/_species.dm @@ -759,7 +759,7 @@ GLOBAL_LIST_EMPTY(features_by_species) //Underwear, Undershirts & Socks if(!(NO_UNDERWEAR in species_traits)) - if(species_human.underwear) + if(species_human.underwear && !(src.bodytype & BODYTYPE_DIGITIGRADE)) //MONKESTATION EDIT var/datum/sprite_accessory/underwear/underwear = GLOB.underwear_list[species_human.underwear] var/mutable_appearance/underwear_overlay if(underwear) diff --git a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm index b7fe8d9c2be1..bae471942517 100644 --- a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm @@ -129,13 +129,14 @@ Lizard subspecies: ASHWALKERS MUTCOLORS_SECONDARY, EYECOLOR, LIPS, + NO_UNDERWEAR, //MONKESTATION ADDITION: no more flesh clothes lol ) inherent_traits = list( //TRAIT_LITERATE, TRAIT_VIRUSIMMUNE, ) species_language_holder = /datum/language_holder/lizard/ash - digitigrade_customization = DIGITIGRADE_FORCED + /*digitigrade_customization = DIGITIGRADE_FORCED*/ //MONKESTATION REMOVAL: not needed examine_limb_id = SPECIES_LIZARD bodypart_overrides = list( BODY_ZONE_HEAD = /obj/item/bodypart/head/lizard,