1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-28 04:40:22 +02:00

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:
paramat
2016-05-05 00:22:57 +01:00
parent 8d3d558e42
commit 8c3f96d738
2 changed files with 3 additions and 3 deletions

View File

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