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

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