Add is_ground_content=false to some nodes

This commit is contained in:
Wuzzy 2017-03-11 16:36:05 +01:00
parent d79d629e3d
commit 005b509938
10 changed files with 23 additions and 3 deletions

View file

@ -47,6 +47,7 @@ minetest.register_node("mcl_flowerpots:flower_pot", {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, -0.1, 0.2}
},
is_ground_content = false,
inventory_image = "mcl_flowerpots_flowerpot_inventory.png",
groups = {dig_immediate=3, deco_block=1, attached_node=1, flower_pot=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
@ -108,6 +109,7 @@ minetest.register_node("mcl_flowerpots:flower_pot_"..flower, {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, -0.1, 0.2}
},
is_ground_content = false,
groups = {dig_immediate=3, attached_node=1, not_in_creative_inventory=1, flower_pot=2},
sounds = mcl_sounds.node_sound_stone_defaults(),
on_rightclick = function(pos, item, clicker)
@ -145,6 +147,7 @@ minetest.register_node("mcl_flowerpots:flower_pot_"..flower, {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, -0.1, 0.2}
},
is_ground_content = false,
groups = {dig_immediate=3, attached_node=1, not_in_creative_inventory=1, flower_pot=2},
sounds = mcl_sounds.node_sound_stone_defaults(),
on_rightclick = function(pos, item, clicker)