Fix Respawn Character Admin Verb (#74295)

## About The Pull Request

while testing #74293 i tried to use this verb and it didnt work because
some stuff wasnt parsing in correctly so i fixed it

## Why It's Good For The Game

we want all of the admin tools to work

## Changelog


🆑
fix: admin respawn character verb works properly
/🆑
This commit is contained in:
Sol N
2023-03-29 06:22:22 +01:00
committed by GitHub
parent 455dce94cd
commit c4b95c7ccd
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -212,10 +212,10 @@ Traitors and the like can also be revived with the previous role mostly intact.
if(record_found)//If they have a record we can determine a few things.
new_character.real_name = record_found.name
new_character.gender = record_found.gender
new_character.gender = lowertext(record_found.gender)
new_character.age = record_found.age
var/datum/dna/found_dna = record_found.dna_ref
new_character.hardset_dna(found_dna.unique_identity, record_found.dna_string, null, record_found.name, record_found.blood_type, new record_found.species, found_dna.features)
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)
else
new_character.randomize_human_appearance()
new_character.dna.update_dna_identity()