Compare commits

..

No commits in common. "c6fbab59749dd767e31c14d7042a8394c040794b" and "5a17c0e72f1b64750fe4b7f346f85276ef54a29b" have entirely different histories.

4 changed files with 4 additions and 8 deletions

Binary file not shown.

View file

@ -398,8 +398,7 @@ 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;
@ -635,8 +634,8 @@ namespace RJW_Menstruation
} }
XenotypeDef motherInheritableXenotype = mother?.genes?.Xenotype; XenotypeDef motherInheritableXenotype = mother?.genes?.Xenotype;
XenotypeDef fatherInheritableXenotype = father?.genes?.Xenotype; XenotypeDef fatherInheritableXenotype = father?.genes?.Xenotype;
if (!(motherInheritableXenotype?.inheritable ?? false)) motherInheritableXenotype = null; if (!motherInheritableXenotype.inheritable) motherInheritableXenotype = null;
if (!(fatherInheritableXenotype?.inheritable ?? false)) fatherInheritableXenotype = null; if (!fatherInheritableXenotype.inheritable) fatherInheritableXenotype = null;
// If they're the same (or both null) // If they're the same (or both null)
if (motherInheritableXenotype == fatherInheritableXenotype) if (motherInheritableXenotype == fatherInheritableXenotype)

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest> <Manifest>
<identifier>RJW Menstruation</identifier> <identifier>RJW Menstruation</identifier>
<version>1.0.8.4</version> <version>1.0.8.3</version>
<dependencies> <dependencies>
</dependencies> </dependencies>
<incompatibleWith /> <incompatibleWith />

View file

@ -1,6 +1,3 @@
Version 1.0.8.4
- Newborns should now be baseliners if there are no xenotypes to inherit.
Version 1.0.8.3 Version 1.0.8.3
- Compatibility update for RJW 5.3.0.9 - Compatibility update for RJW 5.3.0.9
- Requires RJW 5.3.0.9 - Requires RJW 5.3.0.9