cherry-pick from github.com/minetest/minetest_game> Stairs/default: Make sandstone(brick) groups consistent
Sandstone is crumbly = 1 cracky = 3 to be slowly diggable by hand Sandstonebrick(stair/slab) is cracky = 2
This commit is contained in:
parent
c47d026950
commit
75a85b951e
2 changed files with 3 additions and 3 deletions
|
@ -246,7 +246,7 @@ minetest.register_node("default:desert_stonebrick", {
|
|||
minetest.register_node("default:sandstone", {
|
||||
description = "Sandstone",
|
||||
tiles = {"default_sandstone.png"},
|
||||
groups = {crumbly = 2, cracky = 3},
|
||||
groups = {crumbly = 1, cracky = 3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue