diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua index f812e76..e3845e6 100644 --- a/technic/machines/register/grinder_recipes.lua +++ b/technic/machines/register/grinder_recipes.lua @@ -98,6 +98,10 @@ if minetest.get_modpath("moreores") then table.insert(recipes, {"moreores:silver_lump", "technic:silver_dust 2"}) end +if minetest.get_modpath("nether") then + table.insert(recipes, {"nether:nether_lump", "technic:nether_dust 2"}) +end + for _, data in pairs(recipes) do technic.register_grinder_recipe({input = {data[1]}, output = data[2]}) end @@ -149,6 +153,9 @@ if minetest.get_modpath("gloopores") or minetest.get_modpath("glooptest") then register_dust("Kalite", nil) register_dust("Talinite", "glooptest:talinite_ingot") end +if minetest.get_modpath("nether") then + register_dust("Nether", "nether:nether_ingot") +end for p = 0, 35 do local nici = (p ~= 0 and p ~= 7 and p ~= 35) and 1 or nil diff --git a/technic/textures/technic_nether_dust.png b/technic/textures/technic_nether_dust.png new file mode 100644 index 0000000..94a1267 Binary files /dev/null and b/technic/textures/technic_nether_dust.png differ