mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 14:23:16 -04:00
sandstone should drop itself on dig and be craftable back into 4 sand.
This commit is contained in:
parent
a780efd8f7
commit
4705493928
1 changed files with 7 additions and 0 deletions
|
@ -402,6 +402,13 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'default:sand 4',
|
||||||
|
recipe = {
|
||||||
|
'default:sandstone',
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'default:clay',
|
output = 'default:clay',
|
||||||
recipe = {
|
recipe = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue