1
0
mirror of https://github.com/minetest-mods/technic.git synced 2025-06-07 04:10:37 +02:00

allow grinding wheatseeds to flour, closes #173

This commit is contained in:
Tim 2015-01-18 14:34:48 +01:00
parent fe4372649f
commit a8b711a7f4

@ -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"})