Merge pull request #98 from Niklp09/glow_gravel

add not in creative inv group to grow gravel
This commit is contained in:
Joachim Stolberg 2022-11-01 20:28:39 +01:00 committed by GitHub
commit 18d06994bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ minetest.register_node("techage:glow_gravel", {
}}, }},
paramtype = "light", paramtype = "light",
light_source = 8, light_source = 8,
groups = {crumbly = 2, falling_node = 1}, groups = {crumbly = 2, falling_node = 1, not_in_creative_inventory = 1},
sounds = default.node_sound_gravel_defaults(), sounds = default.node_sound_gravel_defaults(),
drop = "", drop = "",
}) })