tubes: remove stone group

This commit is contained in:
Joachim Stolberg 2020-09-01 19:51:26 +02:00
parent 1175301dc2
commit 677c1f4148

@ -75,7 +75,7 @@ minetest.register_node("tubelib:tubeS", {
paramtype = "light",
sunlight_propagates = true,
is_ground_content = false,
groups = {choppy=2, cracky=3, stone=1},
groups = {choppy=2, cracky=3},
sounds = default.node_sound_wood_defaults(),
})
@ -115,7 +115,7 @@ minetest.register_node("tubelib:tubeA", {
paramtype = "light",
sunlight_propagates = true,
is_ground_content = false,
groups = {choppy=2, cracky=3, stone=1, not_in_creative_inventory=1},
groups = {choppy=2, cracky=3, not_in_creative_inventory=1},
sounds = default.node_sound_wood_defaults(),
drop = "tubelib:tubeS",
})