mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-25 12:01:06 +01:00
Make red sand craftable in v6
This commit is contained in:
parent
602058716f
commit
0af350b439
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue