We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c2ccba commit 3c0568fCopy full SHA for 3c0568f
ProdigalArchipelago/NpcPatcher.cs
@@ -634,6 +634,21 @@ static bool Prefix(ref bool __result)
634
}
635
636
637
+[HarmonyPatch(typeof(Revulan))]
638
+[HarmonyPatch("BlessingCount")]
639
+class Revulan_BlessingCount_Patch
640
+{
641
+ static bool Prefix(ref bool __result)
642
+ {
643
+ if (Archipelago.Enabled)
644
645
+ __result = Archipelago.AP.BlessingCount() >= 2;
646
+ return false;
647
+ }
648
+ return true;
649
650
+}
651
+
652
[HarmonyPatch(typeof(Butler))]
653
[HarmonyPatch("ButlerEnding")]
654
[HarmonyPatch(MethodType.Enumerator)]
0 commit comments