Skip to content

Commit

Permalink
Change is_group_content to false for bricks.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfence committed Dec 17, 2023
1 parent 0b531cb commit 919dae1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions technic_worldgen/nodes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
})
Expand All @@ -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(),
})
Expand Down

0 comments on commit 919dae1

Please sign in to comment.