Fixes some hardset dna misuse

This commit is contained in:
AnturK
2017-09-29 09:12:52 +02:00
committed by KorPhaeron
parent c1353ceffb
commit 423e76c8f1
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -344,7 +344,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
new_character.real_name = record_found.fields["name"]
new_character.gender = record_found.fields["sex"]
new_character.age = record_found.fields["age"]
new_character.hardset_dna(record_found.fields["identity"], record_found.fields["enzymes"], record_found.fields["name"], record_found.fields["blood_type"], record_found.fields["species"], record_found.fields["features"])
new_character.hardset_dna(record_found.fields["identity"], record_found.fields["enzymes"], record_found.fields["name"], record_found.fields["blood_type"], new record_found.fields["species"], record_found.fields["features"])
else
var/datum/preferences/A = new()
A.copy_to(new_character)