From 060331de37951d4fa47c793758e195cd8f6eddd6 Mon Sep 17 00:00:00 2001 From: Eric Wald Date: Sun, 26 Jun 2016 19:22:53 -0600 Subject: [PATCH] Stockflow reaction updates SpinThread jobs now get the proper material category flag, and metal mechanisms can be ordered. --- plugins/lua/stockflow.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/lua/stockflow.lua b/plugins/lua/stockflow.lua index 4d7889843..6027bb455 100644 --- a/plugins/lua/stockflow.lua +++ b/plugins/lua/stockflow.lua @@ -396,7 +396,7 @@ function collect_reactions() reaction_entry(result, job_types.MakeCheese) reaction_entry(result, job_types.MilkCreature) reaction_entry(result, job_types.ShearCreature) - reaction_entry(result, job_types.SpinThread) + reaction_entry(result, job_types.SpinThread, {material_category = {strand = true}}) reaction_entry(result, job_types.MakeLye) reaction_entry(result, job_types.ProcessPlants) reaction_entry(result, job_types.ProcessPlantsBag) @@ -538,6 +538,7 @@ function collect_reactions() {job_types.MakeEarring, "Make", "Earring"}, {job_types.MakeBracelet, "Make", "Bracelet"}, {job_types.MakeGem, "Make Large", "Gem"}, + {job_types.ConstructMechanisms, "Construct", "Mechanisms"}, }, mat_flags) end