From 3ad15f62d8d7b95f6d222140c0193ee3b52ea91e Mon Sep 17 00:00:00 2001 From: Lucy Date: Thu, 15 Feb 2024 15:14:36 -0500 Subject: [PATCH 1/2] Lizards, moths, and androids can now have hair --- code/modules/mob/living/carbon/human/species_types/android.dm | 1 + .../mob/living/carbon/human/species_types/lizardpeople.dm | 1 + code/modules/mob/living/carbon/human/species_types/mothmen.dm | 1 + 3 files changed, 3 insertions(+) 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 152d5609b45e..d38a4bff7757 100644 --- a/code/modules/mob/living/carbon/human/species_types/android.dm +++ b/code/modules/mob/living/carbon/human/species_types/android.dm @@ -5,6 +5,7 @@ NO_DNA_COPY, NOTRANSSTING, NO_UNDERWEAR, + HAIR // monke edit: androids can have hair (again, it's the future, why not) ) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION, 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 bae471942517..b51adf284ad1 100644 --- a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm @@ -9,6 +9,7 @@ MUTCOLORS_SECONDARY, EYECOLOR, LIPS, + HAIR // monke edit: lizards can have hair (it's the future, why not) ) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION, diff --git a/code/modules/mob/living/carbon/human/species_types/mothmen.dm b/code/modules/mob/living/carbon/human/species_types/mothmen.dm index 518132aed5e4..36a0ecf485bc 100644 --- a/code/modules/mob/living/carbon/human/species_types/mothmen.dm +++ b/code/modules/mob/living/carbon/human/species_types/mothmen.dm @@ -5,6 +5,7 @@ species_traits = list( LIPS, HAS_MARKINGS, + HAIR // monke edit: moths can have hair (it's the future, why not) ) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION, From ad07367fbaf9bf80809f29c66a05338e4563ba06 Mon Sep 17 00:00:00 2001 From: Lucy Date: Fri, 16 Feb 2024 22:37:52 -0500 Subject: [PATCH 2/2] Wigs for androids --- code/modules/mob/living/carbon/human/species_types/android.dm | 1 - 1 file changed, 1 deletion(-) 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 d38a4bff7757..152d5609b45e 100644 --- a/code/modules/mob/living/carbon/human/species_types/android.dm +++ b/code/modules/mob/living/carbon/human/species_types/android.dm @@ -5,7 +5,6 @@ NO_DNA_COPY, NOTRANSSTING, NO_UNDERWEAR, - HAIR // monke edit: androids can have hair (again, it's the future, why not) ) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION,