Skip to content
Snippets Groups Projects
Commit c8b1671e authored by paramat's avatar paramat
Browse files

Default: Alter sand to sandstone recipe

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.
parent 96aac5ff
No related branches found
No related tags found
No related merge requests found
......@@ -495,10 +495,10 @@ minetest.register_craft({
})
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"},
}
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment