mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-06 10:10:36 +02:00
feature/add_grinding_recipe_for_nether_lump_and_ingot + image for nether dust
This commit is contained in:
@ -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
|
||||
|
BIN
technic/textures/technic_nether_dust.png
Normal file
BIN
technic/textures/technic_nether_dust.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 207 B |
Reference in New Issue
Block a user