Files
Unlock-All/Patches/PlayerFishingControllerPatches.cs
2026-03-31 20:57:22 +01:00

12 lines
234 B
C#

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