forked from VoxeLibre/VoxeLibre
Add stonebrick crafting group
This commit is contained in:
parent
75318440d0
commit
6bdb69e084
|
@ -172,7 +172,7 @@ minetest.register_node("default:stonebrick", {
|
||||||
description = "Stone Bricks",
|
description = "Stone Bricks",
|
||||||
tiles = {"default_stone_brick.png"},
|
tiles = {"default_stone_brick.png"},
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = {cracky=3, stone=1},
|
groups = {cracky=3, stone=1, stonebrick=1},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -181,7 +181,7 @@ minetest.register_node("default:stonebrickcarved", {
|
||||||
tiles = {"default_stonebrick_carved.png"},
|
tiles = {"default_stonebrick_carved.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = {cracky=3, stone=1},
|
groups = {cracky=3, stone=1, stonebrick=1},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -190,7 +190,7 @@ minetest.register_node("default:stonebrickcracked", {
|
||||||
tiles = {"default_stonebrick_cracked.png"},
|
tiles = {"default_stonebrick_cracked.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = {cracky=3, stone=1},
|
groups = {cracky=3, stone=1, stonebrick=1},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -198,7 +198,7 @@ minetest.register_node("default:stonebrickmossy", {
|
||||||
description = "Mossy Stone Bricks",
|
description = "Mossy Stone Bricks",
|
||||||
tiles = {"default_stonebrick_mossy.png"},
|
tiles = {"default_stonebrick_mossy.png"},
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = {cracky=3, stone=1},
|
groups = {cracky=3, stone=1, stonebrick=1},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -298,7 +298,7 @@ stairs.register_stair_and_slab("redsandstone", "default:redsandstone",
|
||||||
"Red Sandstone Slab",
|
"Red Sandstone Slab",
|
||||||
default.node_sound_stone_defaults())
|
default.node_sound_stone_defaults())
|
||||||
|
|
||||||
stairs.register_stair_and_slab("stonebrick", "default:stonebrick",
|
stairs.register_stair_and_slab("stonebrick", "group:stonebrick",
|
||||||
{cracky=3},
|
{cracky=3},
|
||||||
{"default_stone_brick.png"},
|
{"default_stone_brick.png"},
|
||||||
"Stone Bricks Stair",
|
"Stone Bricks Stair",
|
||||||
|
|
Loading…
Reference in New Issue