mirror of
https://gitgud.io/amevarashi/rjw-sexperience-ideology.git
synced 2024-08-15 00:43:19 +00:00
25 lines
668 B
C#
25 lines
668 B
C#
using HarmonyLib;
|
|
using RJWSexperience.Ideology.Patches;
|
|
using System.Reflection;
|
|
using Verse;
|
|
|
|
namespace RJWSexperience.Ideology
|
|
{
|
|
[StaticConstructorOnStartup]
|
|
internal static class First
|
|
{
|
|
static First()
|
|
{
|
|
var harmony = new Harmony("RJW_Sexperience.Ideology");
|
|
harmony.PatchAll(Assembly.GetExecutingAssembly());
|
|
|
|
if (ModLister.HasActiveModWithName("RJW Sexperience"))
|
|
{
|
|
harmony.Patch(AccessTools.Method("RJWSexperience.RJWUtility:ThrowVirginHistoryEvent"),
|
|
prefix: null,
|
|
postfix: new HarmonyMethod(typeof(Sexperience_Patch_ThrowVirginHistoryEvent), nameof(Sexperience_Patch_ThrowVirginHistoryEvent.Postfix))
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|