add centrifuge recipe for wheat

This commit is contained in:
Tim 2015-01-18 23:04:58 +01:00
parent 00f61dfb81
commit 9087abcde0
1 changed files with 4 additions and 0 deletions

View File

@ -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