From 0593d9ea8097856dc632c0ab6b3fbf4d570c7a4e Mon Sep 17 00:00:00 2001 From: meem <75212565+meemofcourse@users.noreply.github.com> Date: Fri, 6 Sep 2024 05:57:11 -0400 Subject: [PATCH] changes human generic names to be improper (e.g. the human man) + changes mothperson to moth (#3321) ## About The Pull Request ![imagen](https://github.com/user-attachments/assets/eeef1198-1f3b-4de8-8ba1-f1f67d97adb6) title ## Why It's Good For The Game * mothperson person was getting a bit jarring * ![imagen](https://github.com/user-attachments/assets/ec18a121-e8ab-4d7f-a7f6-5cf8108828ac) < this wont happen ## Changelog :cl: spellcheck: Human generic names (the ones that show up when you examine someone) will be prefixed consistently /:cl: --- code/modules/mob/living/carbon/human/human_helpers.dm | 2 +- code/modules/mob/living/carbon/human/species_types/mothmen.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm index cd588a89b9ce..b7c5b9877120 100644 --- a/code/modules/mob/living/carbon/human/human_helpers.dm +++ b/code/modules/mob/living/carbon/human/human_helpers.dm @@ -270,7 +270,7 @@ final_string += get_gender() if(prefixed) - final_string = "\A [final_string]" + final_string = "\improper [final_string]" if(lowercase) final_string = lowertext(final_string) 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 91169299afba..f8495f783e36 100644 --- a/code/modules/mob/living/carbon/human/species_types/mothmen.dm +++ b/code/modules/mob/living/carbon/human/species_types/mothmen.dm @@ -1,5 +1,5 @@ /datum/species/moth - name = "\improper Mothperson" + name = "\improper Moth" id = SPECIES_MOTH default_color = "00FF00" species_traits = list(LIPS, NOEYESPRITES, TRAIT_ANTENNAE, HAIR, EMOTE_OVERLAY)