From 60ab768a9b2b373a74850e5f8df71e1fea784b60 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 13 Feb 2023 01:45:56 +0100 Subject: [PATCH] [MIRROR] Underwear adjustment [MDB IGNORE] (#19303) * Underwear adjustment (#73327) ## About The Pull Request Adds NO_UNDERWEAR to abductors, androids, and zombies. ## Why It's Good For The Game These wacky fellows can't show off their freaky bodies while they are wearing a tacky t-shirt. ## Changelog :cl: itseasytosee imagedel: Android abductors and skeletons have lost all modesty and have stopped wearing underwear. /:cl: * Underwear adjustment --------- Co-authored-by: itseasytosee <55666666+itseasytosee@users.noreply.github.com> --- code/modules/mob/living/carbon/human/species_types/abductors.dm | 1 + code/modules/mob/living/carbon/human/species_types/android.dm | 1 + code/modules/mob/living/carbon/human/species_types/skeletons.dm | 1 + 3 files changed, 3 insertions(+) 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,