summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim <t4im@users.noreply.github.com>2015-01-18 23:04:58 +0100
committerTim <t4im@users.noreply.github.com>2015-01-30 05:09:21 +0100
commit9087abcde029b12a8d21f90bf71fdf85ecff7d86 (patch)
tree7b3626c82b2940ae297bd09e3781fc29fc61573e
parent00f61dfb81100094b64de06ca4e1ef73ef8bcd47 (diff)
add centrifuge recipe for wheat
-rw-r--r--technic/machines/register/centrifuge_recipes.lua4
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