mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 22:33:16 -04:00
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:
parent
0d924e7e4d
commit
873e33ec70
1 changed files with 2 additions and 2 deletions
|
@ -417,8 +417,8 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'default:sandstone',
|
output = 'default:sandstone',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'group:sand', 'group:sand'},
|
{'default:sand', 'default:sand'},
|
||||||
{'group:sand', 'group:sand'},
|
{'default:sand', 'default:sand'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue