Add temporary recipes for the new smooth blocks

This commit is contained in:
Wuzzy 2017-11-24 05:06:32 +01:00
parent b221ca379c
commit a5107bc38e
2 changed files with 33 additions and 0 deletions

View File

@ -3,4 +3,5 @@ mcl_mobitems
mcl_end
mcl_nether
mcl_ocean
mcl_stairs
xpanes

View File

@ -151,3 +151,35 @@ if minetest.get_mapgen_setting("mg_name") == "v6" then
})
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" },
},
})