mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user