forked from VoxeLibre/VoxeLibre
Add temporary recipes for the new smooth blocks
This commit is contained in:
parent
b221ca379c
commit
a5107bc38e
|
@ -3,4 +3,5 @@ mcl_mobitems
|
||||||
mcl_end
|
mcl_end
|
||||||
mcl_nether
|
mcl_nether
|
||||||
mcl_ocean
|
mcl_ocean
|
||||||
|
mcl_stairs
|
||||||
xpanes
|
xpanes
|
||||||
|
|
|
@ -151,3 +151,35 @@ if minetest.get_mapgen_setting("mg_name") == "v6" then
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_nether:quartz_smooth 4",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_nether:quartz_block", "mcl_nether:quartz_block" },
|
||||||
|
{ "mcl_nether:quartz_block", "mcl_nether:quartz_block" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_core:sandstonesmooth2 4",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_core:sandstonesmooth", "mcl_core:sandstonesmooth" },
|
||||||
|
{ "mcl_core:sandstonesmooth", "mcl_core:sandstonesmooth" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_core:redsandstonesmooth2 4",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_core:redsandstonesmooth", "mcl_core:redsandstonesmooth" },
|
||||||
|
{ "mcl_core:redsandstonesmooth", "mcl_core:redsandstonesmooth" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_core:stone_smooth 2",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_stairs:slab_stone" },
|
||||||
|
{ "mcl_stairs:slab_stone" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue