Nonbinary people can respawn (#95854)

## About The Pull Request

locked records(admin-only records) now use the `gender` variable to keep
the mob's actual gender, not resorting to "Other". This means that
nonbinary people are once again capable of being respawned. As locked
records are admin-only, and used in few other locations, the gender
variable is only accessed by respawning code at the moment, and should
never be accessed in a player-facing manner, so it doesn't matter that
plural & neuter are in there.

## Why It's Good For The Game

fixes #95768

## Changelog
🆑

fix: Nonbinary people can respawn

/🆑
This commit is contained in:
Leland Kemble
2026-04-24 18:15:08 -06:00
committed by GitHub
parent 1f6f738760
commit 68f5a555d0
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -285,7 +285,7 @@ ADMIN_VERB(respawn_character, R_ADMIN, "Respawn Character", "Respawn a player th
if(record_found)//If they have a record we can determine a few things.
new_character.real_name = record_found.name
new_character.gender = LOWER_TEXT(record_found.gender)
new_character.gender = record_found.gender
new_character.age = record_found.age
var/datum/dna/found_dna = record_found.locked_dna
new_character.hardset_dna(found_dna.unique_identity, found_dna.mutation_index, null, record_found.name, record_found.blood_type, new record_found.species_type, found_dna.features)