1
0
鏡像自 https://github.com/minetest-mods/nether.git 已同步 2025-09-18 14:10:36 +02:00

Update nether-compressor-recipe.lua

clear craft recipe
此提交包含在:
Diablosxm
2023-05-20 01:34:51 -04:00
提交者 GitHub
父節點 4164ecf041
當前提交 12bd60f3d9

查看文件

@@ -14,6 +14,36 @@ local recipes = {
{"nether:brick_compressed 9", "nether:nether_lump", 12} {"nether:brick_compressed 9", "nether:nether_lump", 12}
} }
-- clear craft recipe
minetest.clear_craft({
recipe = {
{"nether:rack", "nether:rack"},
{"nether:rack", "nether:rack"},
}
})
minetest.clear_craft({
recipe = {
{"nether:brick","nether:brick","nether:brick"},
{"nether:brick","nether:brick","nether:brick"},
{"nether:brick","nether:brick","nether:brick"},
}
})
minetest.clear_craft({
recipe = {
{"nether:rack_deep", "nether:rack_deep"},
{"nether:rack_deep", "nether:rack_deep"}
}
})
minetest.clear_craft({
recipe = {
{"nether:brick_compressed","nether:brick_compressed","nether:brick_compressed"},
{"nether:brick_compressed","nether:brick_compressed","nether:brick_compressed"},
{"nether:brick_compressed","nether:brick_compressed","nether:brick_compressed"},
}
})
for _, data in pairs(recipes) do for _, data in pairs(recipes) do
technic.register_compressor_recipe({input = {data[1]}, output = data[2], time = data[3]}) technic.register_compressor_recipe({input = {data[1]}, output = data[2], time = data[3]})