mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
d43eb0d4f9
todo: allow anims for masturbate and corpse?
26 lines
766 B
C#
26 lines
766 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using HarmonyLib;
|
|
using RimWorld;
|
|
using Verse;
|
|
using rjw;
|
|
using Verse.AI;
|
|
|
|
namespace Rimworld_Animations {
|
|
|
|
[HarmonyPatch(typeof(JobGiver_DoLovin), "TryGiveJob")]
|
|
public static class HarmonyPatch_DoLovinAnimationPatch {
|
|
|
|
public static void Postfix(ref Pawn pawn, ref Job __result) {
|
|
|
|
if(__result != null) {
|
|
Pawn partnerInMyBed = LovePartnerRelationUtility.GetPartnerInMyBed(pawn);
|
|
RestUtility.WakeUp(pawn);
|
|
__result = JobMaker.MakeJob(DefDatabase<JobDef>.GetNamed("JoinInBedAnimation", true), partnerInMyBed, partnerInMyBed.CurrentBed());
|
|
}
|
|
}
|
|
}
|
|
}
|