
Valheim
You are viewing a potentially older version of this package. View Latest Version
fastercrafting
makes crafting fasterfaster crafting
client side mod that makes crafting faster for you.
simply install it with a mod manager or manually download and drop the dll into your bepinex/plugins folder.
[HarmonyPatch(typeof(InventoryGui), "Awake")]
class fasterCrafting
{
static void Postfix(ref InventoryGui __instance)
{
__instance.m_craftDuration = .25f;
}
}