mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-29 08:09:34 +01:00
ends transphobia in the cloning bay (real!)
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
var/languages=null
|
||||
var/list/flavor=null
|
||||
var/gender = null
|
||||
var/identifying_gender = null
|
||||
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.
|
||||
|
||||
@@ -54,6 +55,7 @@
|
||||
newrecord.implant = implant
|
||||
newrecord.flavor = flavor
|
||||
newrecord.gender = gender
|
||||
newrecord.identifying_gender = identifying_gender
|
||||
newrecord.body_descriptors = body_descriptors.Copy()
|
||||
newrecord.genetic_modifiers = genetic_modifiers.Copy()
|
||||
return newrecord
|
||||
@@ -797,4 +799,4 @@
|
||||
#undef PAGE_BUFFER
|
||||
#undef PAGE_REJUVENATORS
|
||||
|
||||
/////////////////////////// DNA MACHINES
|
||||
/////////////////////////// DNA MACHINES
|
||||
|
||||
@@ -110,6 +110,7 @@
|
||||
R.dna.real_name = "clone ([rand(0,999)])"
|
||||
H.real_name = R.dna.real_name
|
||||
H.gender = R.gender
|
||||
H.identifying_gender = R.identifying_gender
|
||||
H.descriptors = R.body_descriptors
|
||||
|
||||
//Get the clone body ready
|
||||
|
||||
@@ -432,6 +432,7 @@
|
||||
R.gender = subject.gender
|
||||
R.body_descriptors = subject.descriptors
|
||||
R.flavor = subject.flavor_texts.Copy()
|
||||
R.identifying_gender = subject.identifying_gender
|
||||
for(var/datum/modifier/mod in subject.modifiers)
|
||||
if(mod.flags & MODIFIER_GENETIC)
|
||||
R.genetic_modifiers.Add(mod.type)
|
||||
@@ -493,4 +494,4 @@
|
||||
SStgui.update_uis(src)
|
||||
|
||||
#undef MENU_MAIN
|
||||
#undef MENU_RECORDS
|
||||
#undef MENU_RECORDS
|
||||
|
||||
Reference in New Issue
Block a user