From a2393cf526defa3969746c902aec9dcb20c2f9cb Mon Sep 17 00:00:00 2001 From: Clansty Date: Wed, 15 Oct 2025 10:03:03 +0800 Subject: [PATCH] [F] FestaControl crash --- AquaMai.Mods/UX/FestaControl.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/AquaMai.Mods/UX/FestaControl.cs b/AquaMai.Mods/UX/FestaControl.cs index 748fc738..97f21aed 100644 --- a/AquaMai.Mods/UX/FestaControl.cs +++ b/AquaMai.Mods/UX/FestaControl.cs @@ -2,6 +2,7 @@ using AquaMai.Config.Attributes; using AquaMai.Core.Attributes; using HarmonyLib; using Manager; +using Process; namespace AquaMai.Mods.UX; @@ -24,4 +25,11 @@ public static class FestaControl { Traverse.Create(__instance).Property("isOpenFesta").Value = isFesta; } + + [HarmonyPrefix] + [HarmonyPatch(typeof(GetPresentProcess), "CreateFestaBorderRewardListOpenFesta")] + public static bool CreateFestaBorderRewardListOpenFesta() + { + return false; + } } \ No newline at end of file