diff --git a/1.4/Assemblies/RJW_Menstruation.dll b/1.4/Assemblies/RJW_Menstruation.dll index ae8c52b..91b7c94 100644 Binary files a/1.4/Assemblies/RJW_Menstruation.dll and b/1.4/Assemblies/RJW_Menstruation.dll differ diff --git a/1.4/MilkModule/Assemblies/MilkModule.dll b/1.4/MilkModule/Assemblies/MilkModule.dll index 7c22131..0adf6be 100644 Binary files a/1.4/MilkModule/Assemblies/MilkModule.dll and b/1.4/MilkModule/Assemblies/MilkModule.dll differ diff --git a/1.4/source/RJW_Menstruation/RJW_Menstruation/Patch/Biotech_Patch.cs b/1.4/source/RJW_Menstruation/RJW_Menstruation/Patch/Biotech_Patch.cs index c06272c..7bbdefb 100644 --- a/1.4/source/RJW_Menstruation/RJW_Menstruation/Patch/Biotech_Patch.cs +++ b/1.4/source/RJW_Menstruation/RJW_Menstruation/Patch/Biotech_Patch.cs @@ -98,4 +98,14 @@ namespace RJW_Menstruation mostEggs.ovarypower--; } } + + [HarmonyPatch(typeof(Recipe_ImplantEmbryo), nameof(Recipe_ImplantEmbryo.ApplyOnPawn))] + public class ImplantEmbryo_ApplyOnPawn_Patch + { + public static void PostFix(Pawn pawn) + { + foreach (HediffComp_Menstruation comp in pawn.GetMenstruationComps()) + comp.TakeLoosePregnancy(); + } + } } \ No newline at end of file diff --git a/changelogs.txt b/changelogs.txt index 3d88e2c..9d26535 100644 --- a/changelogs.txt +++ b/changelogs.txt @@ -1,6 +1,7 @@ Version 1.0.8.2 - Updated race support patches for new and removed vaginas. - The Biotech extract ovum operation will now remove an egg from a pawn's ovaries. + - A pawn's womb should now recognize an implanted embryo. Version 1.0.8.1 - Added the option for humans to start Biotech pregnancies if the DLC is enabled. If set, non-humans will use the old multiple pregnancy instead.