[+] CanAttendFesta

This commit is contained in:
Clansty 2025-10-15 22:28:28 +08:00
parent a2393cf526
commit b08a52feb9
No known key found for this signature in database
GPG Key ID: 3A6BE8BAF2EDE134

View File

@ -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;
}
}