From c4536734a3437785eada77607f50edd7425c4e73 Mon Sep 17 00:00:00 2001 From: AlcoholV Date: Tue, 12 May 2020 11:35:30 +0900 Subject: [PATCH] Applied set to true at TraitFixesPatch --- src/CommunityPatch/Patches/Traits/TraitFixesPatch.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CommunityPatch/Patches/Traits/TraitFixesPatch.cs b/src/CommunityPatch/Patches/Traits/TraitFixesPatch.cs index 968e3da..03fc984 100644 --- a/src/CommunityPatch/Patches/Traits/TraitFixesPatch.cs +++ b/src/CommunityPatch/Patches/Traits/TraitFixesPatch.cs @@ -101,6 +101,7 @@ public override void Apply(Game game) { Harmony.Patch(AddPlayerTraitXpMethod, postfix: new HarmonyMethod(typeof(TraitFixesPatch), nameof(AddPlayerTraitXpPrefix))); Harmony.Patch(NotableDaughterStartConvoMethod, transpiler: new HarmonyMethod(typeof(TraitFixesPatch), nameof(NotableDaughterStartConvoTranspiler))); + Applied = true; } public override bool Applied { get; protected set; }