From 1d8693c26f32addecedf105cae6ceabd88c2affe Mon Sep 17 00:00:00 2001 From: tralezab <40974010+tralezab@users.noreply.github.com> Date: Sun, 5 Dec 2021 01:43:00 -0800 Subject: [PATCH] Ethereals no longer get the "he" pronoun accidentally (#63221) Character preferences now disregards the gender value if the species you're playing as is sexless fixes #61491 (Ethereals being "He" instead of "They") --- code/modules/client/preferences/gender.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/client/preferences/gender.dm b/code/modules/client/preferences/gender.dm index a9400465b67..d24b1954c2c 100644 --- a/code/modules/client/preferences/gender.dm +++ b/code/modules/client/preferences/gender.dm @@ -8,4 +8,6 @@ return list(MALE, FEMALE, PLURAL) /datum/preference/choiced/gender/apply_to_human(mob/living/carbon/human/target, value) + if(!target.dna.species.sexes) + value = PLURAL //disregard gender preferences on this species target.gender = value