diff --git a/1.3/Assemblies/RJW_Menstruation.dll b/1.3/Assemblies/RJW_Menstruation.dll index 174359d..dc4ac69 100644 Binary files a/1.3/Assemblies/RJW_Menstruation.dll and b/1.3/Assemblies/RJW_Menstruation.dll differ diff --git a/1.3/MilkModule/Assemblies/MilkModule.dll b/1.3/MilkModule/Assemblies/MilkModule.dll index 86e100b..db30769 100644 Binary files a/1.3/MilkModule/Assemblies/MilkModule.dll and b/1.3/MilkModule/Assemblies/MilkModule.dll differ diff --git a/1.3/SexperienceModule/Assemblies/SexperienceModule.dll b/1.3/SexperienceModule/Assemblies/SexperienceModule.dll index 5568b04..07dfb96 100644 Binary files a/1.3/SexperienceModule/Assemblies/SexperienceModule.dll and b/1.3/SexperienceModule/Assemblies/SexperienceModule.dll differ diff --git a/1.3/source/RJW_Menstruation/MilkModule/Milk_Patch.cs b/1.3/source/RJW_Menstruation/MilkModule/Milk_Patch.cs index 545391c..8fbcb96 100644 --- a/1.3/source/RJW_Menstruation/MilkModule/Milk_Patch.cs +++ b/1.3/source/RJW_Menstruation/MilkModule/Milk_Patch.cs @@ -24,7 +24,7 @@ namespace MilkModule [HarmonyPatch(typeof(HumanCompHasGatherableBodyResource), "Gathered")] public static class Milk_Patch { - public static void Postfix(Pawn doer, HumanCompHasGatherableBodyResource __instance) + public static void Postfix(HumanCompHasGatherableBodyResource __instance) { HediffComp_Breast comp = null; if (__instance.parent is Pawn pawn) comp = pawn.GetBreastComp(); diff --git a/1.3/source/RJW_Menstruation/RJW_Menstruation/Patch/Pawn_Patch.cs b/1.3/source/RJW_Menstruation/RJW_Menstruation/Patch/Pawn_Patch.cs index f650d3a..7eb0acc 100644 --- a/1.3/source/RJW_Menstruation/RJW_Menstruation/Patch/Pawn_Patch.cs +++ b/1.3/source/RJW_Menstruation/RJW_Menstruation/Patch/Pawn_Patch.cs @@ -13,7 +13,7 @@ namespace RJW_Menstruation [HarmonyPatch(typeof(Pawn), nameof(Pawn.SpawnSetup))] public class Pawn_Patch { - public static void Postfix(Map map, bool respawningAfterLoad, Pawn __instance) + public static void Postfix(Pawn __instance) { //Log.Message("Initialize on spawnsetup"); HediffComp_Menstruation comp = __instance.GetMenstruationComp(); diff --git a/1.3/source/RJW_Menstruation/RJW_Menstruation/Patch/RJW_Patch.cs b/1.3/source/RJW_Menstruation/RJW_Menstruation/Patch/RJW_Patch.cs index 6f72dc0..3b55f2c 100644 --- a/1.3/source/RJW_Menstruation/RJW_Menstruation/Patch/RJW_Patch.cs +++ b/1.3/source/RJW_Menstruation/RJW_Menstruation/Patch/RJW_Patch.cs @@ -104,7 +104,7 @@ namespace RJW_Menstruation [HarmonyPatch(typeof(Hediff_BasePregnancy), nameof(Hediff_BasePregnancy.PostBirth))] public static class RJW_Patch_PostBirth { - public static void Postfix(Pawn mother, Pawn father, Pawn baby) + public static void Postfix(Pawn mother, Pawn baby) { if (Configurations.EnableBirthVaginaMorph) { diff --git a/1.3/source/RJW_Menstruation/SexperienceModule/Patch/GetGizmos.cs b/1.3/source/RJW_Menstruation/SexperienceModule/Patch/GetGizmos.cs index 418787c..3eb7e98 100644 --- a/1.3/source/RJW_Menstruation/SexperienceModule/Patch/GetGizmos.cs +++ b/1.3/source/RJW_Menstruation/SexperienceModule/Patch/GetGizmos.cs @@ -16,7 +16,7 @@ namespace RJW_Menstruation.Sexperience [HarmonyPatch(typeof(Pawn_GetGizmos), nameof(Pawn_GetGizmos.GetMenstruationGizmos))] public static class GetGizmos_Patch { - public static void Postfix(Pawn pawn, HediffComp_Menstruation comp, ref List __result) + public static void Postfix(HediffComp_Menstruation comp, ref List __result) { if (Configurations.EnableGatherCumGizmo) __result.Add(CreateGizmo_GatherCum(comp)); diff --git a/1.3/source/RJW_Menstruation/SexperienceModule/Patch/RJW_Patch.cs b/1.3/source/RJW_Menstruation/SexperienceModule/Patch/RJW_Patch.cs index 4377e5f..9a344a4 100644 --- a/1.3/source/RJW_Menstruation/SexperienceModule/Patch/RJW_Patch.cs +++ b/1.3/source/RJW_Menstruation/SexperienceModule/Patch/RJW_Patch.cs @@ -18,7 +18,7 @@ namespace RJW_Menstruation.Sexperience { [HarmonyPrefix] [HarmonyPatch("HasJobOnThing")] - public static bool HasJobOnThing(Pawn pawn, Thing t, bool forced, ref bool __result) + public static bool HasJobOnThing(Pawn pawn, ref bool __result) { HediffComp_Menstruation comp = pawn.GetMenstruationComp(); if (comp != null && comp.DoCleanWomb && comp.TotalCumPercent > 0.001f && pawn.Map.listerBuildings.ColonistsHaveBuilding(VariousDefOf.CumBucket)) @@ -31,7 +31,7 @@ namespace RJW_Menstruation.Sexperience [HarmonyPostfix] [HarmonyPatch("JobOnThing")] - public static void JobOnThing(Pawn pawn, Thing t, bool forced, ref Job __result) + public static void JobOnThing(Pawn pawn, ref Job __result) { HediffComp_Menstruation comp = pawn.GetMenstruationComp(); if (comp != null && comp.DoCleanWomb && comp.TotalCumPercent > 0.001f)