diff options
-rw-r--r-- | extranodes/init.lua | 11 | ||||
-rw-r--r-- | technic/machines/register/compressor_recipes.lua | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/extranodes/init.lua b/extranodes/init.lua index eb54067..4b304b1 100644 --- a/extranodes/init.lua +++ b/extranodes/init.lua @@ -185,3 +185,14 @@ minetest.register_craft({ { "technic:raw_latex", "default:fence_wood", "technic:raw_latex"}, } }) + +minetest.register_craftitem(":technic:diamond_seed", { + description = "Diamond Seed", + inventory_image = "technic_diamond_seed.png", +}) + +minetest.register_craft({ + type = "cooking", + output = "technic:diamond_seed", + recipe = "technic:graphite" +})
\ No newline at end of file diff --git a/technic/machines/register/compressor_recipes.lua b/technic/machines/register/compressor_recipes.lua index d516722..02fd741 100644 --- a/technic/machines/register/compressor_recipes.lua +++ b/technic/machines/register/compressor_recipes.lua @@ -17,7 +17,7 @@ local recipes = { {"technic:coal_dust 4", "technic:graphite"}, {"technic:carbon_cloth", "technic:carbon_plate"}, {"technic:uranium35_ingot 5", "technic:uranium_fuel"}, - {"technic:graphite 25", "default:diamond"} + {"technic:diamond_seed 25", "default:diamond"} } if minetest.get_modpath("ethereal") then |