From b08a52feb9c366aa2066c0edfc18bb2ee9b15d9c Mon Sep 17 00:00:00 2001 From: Clansty Date: Wed, 15 Oct 2025 22:28:28 +0800 Subject: [PATCH] [+] CanAttendFesta --- 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 97f21aed..f4885dd3 100644 --- a/AquaMai.Mods/UX/FestaControl.cs +++ b/AquaMai.Mods/UX/FestaControl.cs @@ -32,4 +32,12 @@ public static class FestaControl { return false; } + + [HarmonyPrefix] + [HarmonyPatch(typeof(FestaManager), "CanAttendFesta")] + public static bool CanAttendFesta(ref bool __result) + { + __result = false; + return false; + } } \ No newline at end of file