removed redundant code

This commit is contained in:
c0ffee 2021-10-24 10:02:53 -07:00
parent e8313765f4
commit f084fa0df3
2 changed files with 0 additions and 21 deletions

View file

@ -13,27 +13,6 @@ using Verse.AI;
namespace Rimworld_Animations
{
[HarmonyPatch(typeof(Bed_Utility), "in_same_bed")]
public static class HarmonyPatch_JobDriver_InSameBedPatch
{
public static bool Prefix(Pawn partner, ref bool __result)
{
if(partner != null && partner.CurJobDef == xxx.casual_sex)
{
__result = true;
return false;
}
return true;
}
}
[HarmonyPatch(typeof(JobDriver_JoinInBed), "MakeNewToils")]
public static class HarmonyPatch_JobDriver_JoinInBed
{