Set is_ground_content=false for some nodes

This commit is contained in:
Wuzzy 2018-01-31 19:36:27 +01:00
parent a84a0a0db6
commit 3e7ad08db0
4 changed files with 9 additions and 7 deletions

View file

@ -501,7 +501,7 @@ minetest.register_node("mcl_core:sandstonesmooth", {
description = "Cut Sandstone",
_doc_items_longdesc = "Cut sandstone is a decorational building block.",
tiles = {"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_smooth.png"},
is_ground_content = true,
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, sandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
@ -513,7 +513,7 @@ minetest.register_node("mcl_core:sandstonecarved", {
description = "Chiseled Sandstone",
_doc_items_longdesc = "Chiseled sandstone is a decorational building block.",
tiles = {"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_carved.png"},
is_ground_content = true,
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, sandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
@ -526,7 +526,7 @@ minetest.register_node("mcl_core:sandstonesmooth2", {
_doc_items_hidden = false,
_doc_items_longdesc = "Smooth sandstone is compressed sand and is a rather soft kind of stone.",
tiles = {"mcl_core_sandstone_top.png"},
is_ground_content = true,
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, sandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
@ -564,7 +564,7 @@ minetest.register_node("mcl_core:redsandstonesmooth", {
description = "Cut Red Sandstone",
_doc_items_longdesc = "Cut red sandstone is a decorational building block.",
tiles = {"mcl_core_red_sandstone_top.png", "mcl_core_red_sandstone_bottom.png", "mcl_core_red_sandstone_smooth.png"},
is_ground_content = true,
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, redsandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
@ -576,7 +576,7 @@ minetest.register_node("mcl_core:redsandstonecarved", {
description = "Chiseled Red Sandstone",
_doc_items_longdesc = "Chiseled red sandstone is a decorational building block.",
tiles = {"mcl_core_red_sandstone_top.png", "mcl_core_red_sandstone_bottom.png", "mcl_core_red_sandstone_carved.png"},
is_ground_content = true,
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, redsandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
@ -588,7 +588,7 @@ minetest.register_node("mcl_core:redsandstonesmooth2", {
description = "Smooth Red Sandstone",
_doc_items_longdesc = "Smooth red sandstone is a decorational building block.",
tiles = {"mcl_core_red_sandstone_top.png"},
is_ground_content = true,
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, redsandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),