Craft 4 default:sand to default:sandstone.
Previously, 4 group:sand was craftable to sandstone and sandstone was
craftable back into default:sand, allowing silver and desert sands to
be converted into incorrect colour sandstone and yellow sand.
})
minetest.register_craft({
- output = 'default:sandstone',
+ output = "default:sandstone",
recipe = {
- {'group:sand', 'group:sand'},
- {'group:sand', 'group:sand'},
+ {"default:sand", "default:sand"},
+ {"default:sand", "default:sand"},
}
})