diff --git a/1.4/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_PregeneratedBabies.cs b/1.4/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_PregeneratedBabies.cs index c83daef..f830211 100644 --- a/1.4/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_PregeneratedBabies.cs +++ b/1.4/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_PregeneratedBabies.cs @@ -291,9 +291,7 @@ namespace RJW_Menstruation public static void Postfix(ref int __result, Pawn mother) { if (Configurations.PregnancySource != Configurations.PregnancyType.Biotech || !Configurations.EnableBiotechTwins) return; - // 'mother' is the genetic mother, but unless she's in labor at the same time the birtherthing is spitting out, this will work as intended - if (mother?.health.hediffSet.GetFirstHediff()?.TryGetComp()?.HasBaby ?? false) - __result = 0; + __result = 0; return; } }