Files
MxValheim/MxValheim/Patch/WearNTear.cs

18 lines
359 B
C#

using BepInEx;
using HarmonyLib;
namespace MxValheim.Patch
{
public class WearNTear_Patch
{
[HarmonyPatch(typeof(WearNTear), "HaveRoof")]
class WearNTear_HaveRoof_Patch
{
static void Postfix(WearNTear __instance, ref bool __result)
{
__result = true;
}
}
}
}