Fixes cloning (#6498)

* DNA Records transfer descriptors and gender

* fixes cloning, because there's a whole nother console that touches the records
This commit is contained in:
Atermonera
2019-10-27 13:24:39 -08:00
committed by VirgoBot
parent 1497af7ba0
commit ca9c62d062
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -111,6 +111,8 @@ var/global/list/datum/dna/gene/dna_genes[0]
// New stuff
var/species = SPECIES_HUMAN
var/list/body_markings = list()
var/list/body_descriptors = null
var/list/genetic_modifiers = list() // Modifiers with the MODIFIER_GENETIC flag are saved. Note that only the type is saved, not an instance.
// Make a copy of this strand.
// USE THIS WHEN COPYING STUFF OR YOU'LL GET CORRUPTION!
+2
View File
@@ -335,6 +335,8 @@
R.name = R.dna.real_name
R.types = DNA2_BUF_UI|DNA2_BUF_UE|DNA2_BUF_SE
R.languages = subject.languages
R.gender = subject.gender
R.body_descriptors = subject.descriptors
if(!brain_skip) //Brains don't have flavor text.
R.flavor = subject.flavor_texts.Copy()
else