diff --git a/code/modules/mob/living/carbon/human/species_types/abductors.dm b/code/modules/mob/living/carbon/human/species_types/abductors.dm index 703f61a7f7d..3706d114457 100644 --- a/code/modules/mob/living/carbon/human/species_types/abductors.dm +++ b/code/modules/mob/living/carbon/human/species_types/abductors.dm @@ -4,6 +4,7 @@ sexes = FALSE species_traits = list( NOEYESPRITES, + NO_UNDERWEAR, ) inherent_traits = list( TRAIT_NOBREATH, diff --git a/code/modules/mob/living/carbon/human/species_types/android.dm b/code/modules/mob/living/carbon/human/species_types/android.dm index e889beec6f2..566de624e3b 100644 --- a/code/modules/mob/living/carbon/human/species_types/android.dm +++ b/code/modules/mob/living/carbon/human/species_types/android.dm @@ -4,6 +4,7 @@ species_traits = list( NO_DNA_COPY, NOTRANSSTING, + NO_UNDERWEAR, ) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION, diff --git a/code/modules/mob/living/carbon/human/species_types/skeletons.dm b/code/modules/mob/living/carbon/human/species_types/skeletons.dm index edc618c1fd3..8477f4b19cb 100644 --- a/code/modules/mob/living/carbon/human/species_types/skeletons.dm +++ b/code/modules/mob/living/carbon/human/species_types/skeletons.dm @@ -8,6 +8,7 @@ NOTRANSSTING, NOEYESPRITES, NO_DNA_COPY, + NO_UNDERWEAR, ) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION,