rjw-events/Source/Patches/HarmonyPatch_StayNudeForOrgy.cs
2021-04-12 10:43:58 -07:00

24 lines
639 B
C#

using HarmonyLib;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
using Verse.AI.Group;
namespace RJW_Events
{
[HarmonyPatch(typeof(PawnGraphicSet), "ResolveApparelGraphics")]
public static class HarmonyPatch_StayNudeForOrgy
{
public static bool Prefix(PawnGraphicSet __instance)
{
if(LordUtility.GetLord(__instance.pawn)?.LordJob != null && LordUtility.GetLord(__instance.pawn).LordJob is LordJob_Joinable_Orgy)
{
return false;
}
return true;
}
}
}