Set new babies to baseliner if there's no xenotype to inherit

This commit is contained in:
lutepickle 2022-11-20 21:26:03 -08:00
parent 8d0d980048
commit 1b5e204795
2 changed files with 2 additions and 1 deletions

Binary file not shown.

View file

@ -398,7 +398,8 @@ namespace RJW_Menstruation
//fixedIdeo: mother.Ideo, //fixedIdeo: mother.Ideo,
forbidAnyTitle: true, forbidAnyTitle: true,
forceNoBackstory: true, forceNoBackstory: true,
forcedEndogenes: PregnancyUtility.GetInheritedGenes(father, mother) forcedEndogenes: PregnancyUtility.GetInheritedGenes(father, mother),
forcedXenotype: ModsConfig.BiotechActive ? XenotypeDefOf.Baseliner : null
); );
int division = 1; int division = 1;