From 3debf011ae441de2e252cdb5c37ca719a15214fb Mon Sep 17 00:00:00 2001 From: Luke aka SwissalpS Date: Wed, 28 Feb 2024 12:06:49 +0100 Subject: [PATCH] some marble isn't ground content (#4) --- marble.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/marble.lua b/marble.lua index b122120..8a725db 100644 --- a/marble.lua +++ b/marble.lua @@ -22,7 +22,7 @@ for _, color in ipairs({"red", "blue", "black"}) do minetest.register_node("planet_mars:" .. color .. "marble_polished", { description = "polished " .. color .. " marble", tiles = {"planet_mars_" .. color .. "marble_polished.png"}, - is_ground_content = true, + is_ground_content = false, groups = {cracky=3}, sounds = default.node_sound_stone_defaults(), }) @@ -30,7 +30,7 @@ for _, color in ipairs({"red", "blue", "black"}) do minetest.register_node("planet_mars:" .. color .. "marble_bricks", { description = color .. " marble bricks", tiles = {"planet_mars_" .. color .. "marble_bricks.png"}, - is_ground_content = true, + is_ground_content = false, groups = {cracky=3}, sounds = default.node_sound_stone_defaults(), })