Skip to content

Commit

Permalink
some marble isn't ground content (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
SwissalpS authored Feb 28, 2024
1 parent 20f7465 commit 3debf01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions marble.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ 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(),
})

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(),
})
Expand Down

0 comments on commit 3debf01

Please sign in to comment.