diff --git a/code/datums/records/manifest.dm b/code/datums/records/manifest.dm index 2a7fc26a90d..de4fae2baef 100644 --- a/code/datums/records/manifest.dm +++ b/code/datums/records/manifest.dm @@ -127,7 +127,7 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new) character_appearance = character_appearance, dna_string = record_dna.unique_enzymes, fingerprint = md5(record_dna.unique_identity), - gender = person_gender, + gender = person.gender, initial_rank = assignment, name = person.real_name, rank = assignment, diff --git a/code/datums/records/record.dm b/code/datums/records/record.dm index 93893f7871e..8197d418bcb 100644 --- a/code/datums/records/record.dm +++ b/code/datums/records/record.dm @@ -145,7 +145,7 @@ character_appearance, dna_string = "Unknown", fingerprint = "?????", - gender = "Other", + gender = "neuter", initial_rank = "Unassigned", name = "Unknown", rank = "Unassigned", diff --git a/code/modules/admin/verbs/admingame.dm b/code/modules/admin/verbs/admingame.dm index fb00b96f783..f1c1ae14af1 100644 --- a/code/modules/admin/verbs/admingame.dm +++ b/code/modules/admin/verbs/admingame.dm @@ -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)