Skip to content
Snippets Groups Projects
Commit 8c3f96d7 authored by paramat's avatar paramat
Browse files

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
parent 8d3d558e
No related branches found
No related tags found
No related merge requests found
......@@ -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(),
})
......
......@@ -339,14 +339,14 @@ stairs.register_stair_and_slab("desert_stonebrick", "default:desert_stonebrick",
default.node_sound_stone_defaults())
stairs.register_stair_and_slab("sandstone", "default:sandstone",
{crumbly = 2, cracky = 2},
{crumbly = 1, cracky = 3},
{"default_sandstone.png"},
"Sandstone Stair",
"Sandstone Slab",
default.node_sound_stone_defaults())
stairs.register_stair_and_slab("sandstonebrick", "default:sandstonebrick",
{crumbly = 2, cracky = 2},
{cracky = 2},
{"default_sandstone_brick.png"},
"Sandstone Brick Stair",
"Sandstone Brick Slab",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment