Red v6 sand must now be crafted with nether wart

This commit is contained in:
Wuzzy 2018-05-16 15:53:00 +02:00
parent ad69aa20ce
commit 88ca7c9a7e
2 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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" },
}
})