Change is_group_content to false for bricks.

This commit is contained in:
SFENCE 2023-12-17 20:34:45 +01:00
parent 0b531cbec5
commit 919dae13bd
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ minetest.register_node( ":technic:granite", {
minetest.register_node( ":technic:granite_bricks", {
description = S("Granite Bricks"),
tiles = { "technic_granite_bricks.png" },
is_ground_content = true,
is_ground_content = false,
groups = {cracky=1},
sounds = default.node_sound_stone_defaults(),
})
@ -73,7 +73,7 @@ minetest.register_node( ":technic:marble", {
minetest.register_node( ":technic:marble_bricks", {
description = S("Marble Bricks"),
tiles = { "technic_marble_bricks.png" },
is_ground_content = true,
is_ground_content = false,
groups = {cracky=3},
sounds = default.node_sound_stone_defaults(),
})