From a8b711a7f4cc22536bce1d32fd59a4903df11b13 Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 18 Jan 2015 14:34:48 +0100 Subject: [PATCH] allow grinding wheatseeds to flour, closes #173 --- technic/machines/register/grinder_recipes.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua index 2d76333..7fd51e9 100644 --- a/technic/machines/register/grinder_recipes.lua +++ b/technic/machines/register/grinder_recipes.lua @@ -25,6 +25,10 @@ local recipes = { {"default:stone", "default:sand"}, } +if minetest.get_modpath("farming") then + table.insert(recipes, {"farming:seed_wheat", "farming:flour 1"}) +end + if minetest.get_modpath("moreores") then table.insert(recipes, {"moreores:mithril_lump", "technic:mithril_dust 2"}) table.insert(recipes, {"moreores:silver_lump", "technic:silver_dust 2"})