12 lines
234 B
C#
12 lines
234 B
C#
using HarmonyLib;
|
|
|
|
namespace UnlockAll.Patches;
|
|
|
|
public class PlayerFishingControllerPatches
|
|
{
|
|
[HarmonyPatch(typeof(PlayerFishingController), "pickFish")]
|
|
public static bool PickFishPrefix()
|
|
{
|
|
return false;
|
|
}
|
|
} |