add not in creative inv group to grow gravel

This commit is contained in:
Niklp 2022-10-23 16:25:16 +02:00 committed by GitHub
parent 416126f80c
commit e849077e52
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",
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(),
drop = "",
})