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

15 lines
282 B
C#

using HarmonyLib;
namespace UnlockAll.Patches;
public static class PlayerPatches
{
[HarmonyPatch(typeof(Player), "CanCraftRecipe")]
[HarmonyPrefix]
public static bool PlayerPrefix(ref bool __result)
{
__result = true;
return false;
}
}