diff --git a/1.1/Assemblies/Rimworld-Animations.dll b/1.1/Assemblies/Rimworld-Animations.dll index ec5fc4c..0f9dce0 100644 Binary files a/1.1/Assemblies/Rimworld-Animations.dll and b/1.1/Assemblies/Rimworld-Animations.dll differ diff --git a/Source/Patches/rjwPatches/HarmonyPatch_DoLovinAnimationPatch.cs b/Source/Patches/rjwPatches/HarmonyPatch_DoLovinAnimationPatch.cs index a69a068..42f6ab2 100644 --- a/Source/Patches/rjwPatches/HarmonyPatch_DoLovinAnimationPatch.cs +++ b/Source/Patches/rjwPatches/HarmonyPatch_DoLovinAnimationPatch.cs @@ -17,9 +17,8 @@ namespace Rimworld_Animations { public static void Postfix(ref Pawn pawn, ref Job __result) { if(__result != null) { - - RestUtility.WakeUp(pawn); Pawn partnerInMyBed = LovePartnerRelationUtility.GetPartnerInMyBed(pawn); + RestUtility.WakeUp(pawn); __result = JobMaker.MakeJob(DefDatabase.GetNamed("JoinInBedAnimation", true), partnerInMyBed, partnerInMyBed.CurrentBed()); }