forked from minetest-mods/technic
defuse by fake_fire added recipes, make people use the grinder for those
This commit is contained in:
parent
9d3f7304fb
commit
3cc568ddbd
@ -51,6 +51,13 @@ for _, data in pairs(recipes) do
|
||||
technic.register_grinder_recipe({input = {data[1]}, output = data[2]})
|
||||
end
|
||||
|
||||
-- defuse common grinder unfriendly recipes
|
||||
if minetest.get_modpath("fake_fire") then -- from homedecor_modpack
|
||||
minetest.register_craft({ output='default:cobble', recipe={{'default:cobble'}}})
|
||||
minetest.register_craft({ output='default:gravel', recipe={{'default:gravel'}}})
|
||||
end
|
||||
|
||||
-- dusts
|
||||
local function register_dust(name, ingot)
|
||||
local lname = string.lower(name)
|
||||
lname = string.gsub(lname, ' ', '_')
|
||||
|
Loading…
Reference in New Issue
Block a user