rjw_menstruation/1.3/source/RJW_Menstruation/MilkModule/Milk_Patch.cs

34 lines
810 B
C#
Raw Normal View History

using HarmonyLib;
2021-08-13 15:29:43 +00:00
using Milk;
using RJW_Menstruation;
using System.Reflection;
using Verse;
2021-08-13 15:29:43 +00:00
namespace MilkModule
{
internal static class First
{
static First()
{
Harmony har = new Harmony("RJW_Menstruation_MilkModule");
2021-08-13 15:29:43 +00:00
har.PatchAll(Assembly.GetExecutingAssembly());
}
}
[HarmonyPatch(typeof(HumanCompHasGatherableBodyResource), "Gathered")]
public static class Milk_Patch
{
public static void Postfix(HumanCompHasGatherableBodyResource __instance)
2021-08-13 15:29:43 +00:00
{
HediffComp_Breast comp = null;
if (__instance.parent is Pawn pawn) comp = pawn.GetBreastComp();
2021-08-13 15:29:43 +00:00
if (comp != null)
{
comp.AdjustNippleProgress(Rand.Range(0.0f, 0.01f));
2021-08-13 15:29:43 +00:00
}
}
}
}