Make sandstone only craftable with normal sand

With group:sand it would be possible to craft 4 desertsand ---> sandstone ---> 4 normal sand. Therefor only use default:sand.
This commit is contained in:
Casimir 2013-03-10 22:54:47 +01:00
parent 0d924e7e4d
commit 873e33ec70
1 changed files with 2 additions and 2 deletions

View File

@ -417,8 +417,8 @@ minetest.register_craft({
minetest.register_craft({
output = 'default:sandstone',
recipe = {
{'group:sand', 'group:sand'},
{'group:sand', 'group:sand'},
{'default:sand', 'default:sand'},
{'default:sand', 'default:sand'},
}
})