diff --git a/mods/HELP/mcl_craftguide/init.lua b/mods/HELP/mcl_craftguide/init.lua index c6ef5898..bc6a8af9 100644 --- a/mods/HELP/mcl_craftguide/init.lua +++ b/mods/HELP/mcl_craftguide/init.lua @@ -229,7 +229,7 @@ function craftguide:get_recipe(iY, xoffset, tooltip_raw, item, recipe_num, recip items[2] == "mcl_core:sand" and items[3] == "mcl_core:sand" and items[4] == "mcl_core:sand" and - items[5] == "mcl_dye:red" and + items[5] == "mcl_nether:nether_wart_item" and items[6] == "mcl_core:sand" and items[7] == "mcl_core:sand" and items[8] == "mcl_core:sand" and diff --git a/mods/MISC/mcl_temp_helper_recipes/init.lua b/mods/MISC/mcl_temp_helper_recipes/init.lua index f2e55810..06206372 100644 --- a/mods/MISC/mcl_temp_helper_recipes/init.lua +++ b/mods/MISC/mcl_temp_helper_recipes/init.lua @@ -109,13 +109,15 @@ minetest.register_craft({ }, }) --- Make red sand craftable in v6 +-- Make red sand, red sandstone and more craftable in v6 +-- NOTE: When you change these, also update mcl_craftguide for the "v6" icon in +-- the craft guide! 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_nether:nether_wart_item", "mcl_core:sand" }, { "mcl_core:sand", "mcl_core:sand", "mcl_core:sand" }, } })