From 0af350b439fe0bc75f1702754fb2f8757cd19464 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 15 Sep 2017 21:08:46 +0200 Subject: [PATCH] Make red sand craftable in v6 --- mods/MISC/mcl_temp_helper_recipes/init.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/mods/MISC/mcl_temp_helper_recipes/init.lua b/mods/MISC/mcl_temp_helper_recipes/init.lua index 11fe31262..32a76e183 100644 --- a/mods/MISC/mcl_temp_helper_recipes/init.lua +++ b/mods/MISC/mcl_temp_helper_recipes/init.lua @@ -120,3 +120,15 @@ minetest.register_craft({ -- TODO: Remove/fix these drops when creeper drops music discs properly +-- Make red sand craftable in v6 +if minetest.get_mapgen_setting("mg_name") == "v6" then + minetest.register_craft({ + output = "mcl_core:redsand 8", + recipe = { + { "mcl_core:sand", "mcl_core:sand", "mcl_core:sand" }, + { "mcl_core:sand", "mcl_dye:red", "mcl_core:sand" }, + { "mcl_core:sand", "mcl_core:sand", "mcl_core:sand" }, + } + }) +end +