Convert gender and pronoun from bay to TG (#19170)

* Convert gender and pronoun from pay to TG

* Remove HERM from biological gender init_possible_values because it won't work

* fix runtime error

---------

Co-authored-by: ShadowLarkens <shadowlarkens@gmail.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
Aura Dusklight
2026-02-25 01:00:04 +02:00
committed by GitHub
parent 3254a47ca7
commit 0964962220
13 changed files with 107 additions and 37 deletions
@@ -67,7 +67,8 @@
for(var/datum/category_group/underwear/WRC in GLOB.global_underwear.categories)
for(var/datum/category_item/underwear/WRI in WRC.items)
if(WRI.is_default(pref.identifying_gender ? pref.identifying_gender : MALE))
var/id_gender = pref.read_preference(/datum/preference/choiced/gender/identifying)
if(WRI.is_default(id_gender ? id_gender : MALE))
pref.all_underwear[WRC.name] = WRI.name
break