diff options
author | Tim <t4im@users.noreply.github.com> | 2015-01-18 23:04:58 +0100 |
---|---|---|
committer | Tim <t4im@users.noreply.github.com> | 2015-01-30 05:09:21 +0100 |
commit | 9087abcde029b12a8d21f90bf71fdf85ecff7d86 (patch) | |
tree | 7b3626c82b2940ae297bd09e3781fc29fc61573e | |
parent | 00f61dfb81100094b64de06ca4e1ef73ef8bcd47 (diff) |
add centrifuge recipe for wheat
-rw-r--r-- | technic/machines/register/centrifuge_recipes.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/technic/machines/register/centrifuge_recipes.lua b/technic/machines/register/centrifuge_recipes.lua index 8b447a2..32a0de2 100644 --- a/technic/machines/register/centrifuge_recipes.lua +++ b/technic/machines/register/centrifuge_recipes.lua @@ -33,6 +33,10 @@ if minetest.get_modpath("bushes_classic") then end end +if minetest.get_modpath("farming") then + table.insert(recipes, { "farming:wheat 4", "farming:seed_wheat 3", "default:dry_shrub 1" }) +end + for _, data in pairs(recipes) do technic.register_separating_recipe({ input = { data[1] }, output = { data[2], data[3] } }) end |