Is there a way to change the crafting speed? I saw the below comment about the dev saying it was a good idea, but I don't see a config being generated for the mod.
You can make it configurable Something like void Awake(){ Duration = base.Config.Bind<bool>("Global", "CraftDuration", fasterCrafting.craftDuration, "Craft duration in seconds. Default: 2"); Duration.SettingChanged += (s, a) => fasterCrafting.craftDuration = Duration.Value; //Update duration without game exiting harmony.PatchAll(); } and in fasterCarfting class Single craftDuration=2f; static void Prefix(ref InventoryGui __instance) { __instance.m_craftDuration = craftDuration; }
Yesterday - YESTERDAY - I was thinking that there needed to be a mod to make the crafting faster. Bronze and arrows are a b&@*$! I love it and am installing it now. Thank you psychic modder!
8 comments
Something like
void Awake(){
and in fasterCarfting classDuration = base.Config.Bind<bool>("Global", "CraftDuration", fasterCrafting.craftDuration, "Craft duration in seconds. Default: 2");
Duration.SettingChanged += (s, a) => fasterCrafting.craftDuration = Duration.Value; //Update duration without game exiting
harmony.PatchAll();
}
Single craftDuration=2f;
static void Prefix(ref InventoryGui __instance)
{
__instance.m_craftDuration = craftDuration;
}