using HarmonyLib; namespace UnlockAll.Patches; public class PlayerFishingControllerPatches { [HarmonyPatch(typeof(PlayerFishingController), "pickFish")] public static bool PickFishPrefix() { return false; } }