From a5107bc38e513746337b9264ae6e869612c71926 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 24 Nov 2017 05:06:32 +0100 Subject: [PATCH] Add temporary recipes for the new smooth blocks --- mods/MISC/mcl_temp_helper_recipes/depends.txt | 1 + mods/MISC/mcl_temp_helper_recipes/init.lua | 32 +++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/mods/MISC/mcl_temp_helper_recipes/depends.txt b/mods/MISC/mcl_temp_helper_recipes/depends.txt index a1ce09984..71556b9ae 100644 --- a/mods/MISC/mcl_temp_helper_recipes/depends.txt +++ b/mods/MISC/mcl_temp_helper_recipes/depends.txt @@ -3,4 +3,5 @@ mcl_mobitems mcl_end mcl_nether mcl_ocean +mcl_stairs xpanes diff --git a/mods/MISC/mcl_temp_helper_recipes/init.lua b/mods/MISC/mcl_temp_helper_recipes/init.lua index f2422509f..e20e60c54 100644 --- a/mods/MISC/mcl_temp_helper_recipes/init.lua +++ b/mods/MISC/mcl_temp_helper_recipes/init.lua @@ -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" }, + }, +})