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.
This commit is contained in:
paramat 2017-01-06 06:15:38 +00:00
parent 96aac5ff5b
commit c8b1671ef0
1 changed files with 3 additions and 3 deletions

View File

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