diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-06-01 22:39:09 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-06-01 22:39:09 +0300 |
commit | 8aaa848b0987e41f9b6924037b398e1e6ef01629 (patch) | |
tree | dbe0ee815ac3e157f996309787973648a6770478 | |
parent | c84ceedf1eb50e5e189ac42270b9c144f21eff7e (diff) |
beetroot support
-rw-r--r-- | technic/machines/register/extractor_recipes.lua | 1 | ||||
-rw-r--r-- | technic/tools/walking_tractor.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/technic/machines/register/extractor_recipes.lua b/technic/machines/register/extractor_recipes.lua index e052971..722e6b7 100644 --- a/technic/machines/register/extractor_recipes.lua +++ b/technic/machines/register/extractor_recipes.lua @@ -44,6 +44,7 @@ if minetest.get_modpath("dye") then table.insert(dye_recipes, {"farming:beans", "dye:green 4"}) table.insert(dye_recipes, {"farming:grapes", "dye:violet 4"}) table.insert(dye_recipes, {"farming:cocoa_beans", "dye:brown 4"}) + table.insert(dye_recipes, {"farming:beetroot", "dye:red 2"}) -- Some extra recipes: -- Himalayan rhubarb root can give yellow dye IRL table.insert(dye_recipes, {"farming:rhubarb", "dye:yellow 4"}) diff --git a/technic/tools/walking_tractor.lua b/technic/tools/walking_tractor.lua index 83e464c..2ac61e6 100644 --- a/technic/tools/walking_tractor.lua +++ b/technic/tools/walking_tractor.lua @@ -51,6 +51,7 @@ local ripe_for_harvest = { "farming:rhubarb_3", "farming:tomato_8", "farming:wheat_8", + "farming:beetroot_5", "ethereal:onion_5", "ethereal:strawberry_8", -- also doubles as a snow-plough |