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

@ -49,6 +49,7 @@ minetest.register_node("mcl_cauldrons:cauldron", {
inventory_image = "mcl_cauldrons_cauldron.png",
drawtype = "nodebox",
paramtype = "light",
is_ground_content = false,
sunlight_propagates = true,
groups = {pickaxey=1, deco_block=1},
node_box = cauldron_nodeboxes[0],
@ -70,6 +71,7 @@ local register_filled_cauldron = function(water_level, description)
_doc_items_create_entry = false,
drawtype = "nodebox",
paramtype = "light",
is_ground_content = false,
sunlight_propagates = true,
groups = {pickaxey=1, not_in_creative_inventory=1},
node_box = cauldron_nodeboxes[water_level],