From 919dae13bddb07d0860afa58108025573d8d3887 Mon Sep 17 00:00:00 2001 From: SFENCE Date: Sun, 17 Dec 2023 20:34:45 +0100 Subject: [PATCH] Change is_group_content to false for bricks. --- technic_worldgen/nodes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/technic_worldgen/nodes.lua b/technic_worldgen/nodes.lua index dfd545b..90888e4 100644 --- a/technic_worldgen/nodes.lua +++ b/technic_worldgen/nodes.lua @@ -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(), })