Set is_ground_content=false

This commit is contained in:
Wuzzy 2016-11-02 01:16:46 +01:00
parent b9513e92d2
commit d70f7e4adb
2 changed files with 4 additions and 4 deletions

View File

@ -329,7 +329,7 @@ minetest.register_node("tsm_pyramids:spawner_mummy", {
description = "Mummy spawner",
paramtype = "light",
tiles = {"tsm_pyramids_spawner.png"},
is_ground_content = true,
is_ground_content = false,
drawtype = "allfaces",
groups = {cracky=1,level=1},
drop = "",

View File

@ -4,7 +4,7 @@ for i=1,3 do
minetest.register_node("tsm_pyramids:deco_stone"..i, {
description = "Sandstone with "..img[i],
tiles = {"default_sandstone.png^tsm_pyramids_"..img[i]..".png"},
is_ground_content = true,
is_ground_content = false,
groups = {crumbly=2,cracky=3},
sounds = default.node_sound_stone_defaults(),
})
@ -27,7 +27,7 @@ end
minetest.register_node("tsm_pyramids:trap", {
description = "Cracked sandstone brick",
tiles = {"default_sandstone_brick.png^tsm_pyramids_crack.png"},
is_ground_content = true,
is_ground_content = false,
groups = {crumbly=2,cracky=3},
sounds = default.node_sound_stone_defaults(),
on_construct = function(pos)
@ -41,7 +41,7 @@ minetest.register_node("tsm_pyramids:trap", {
minetest.register_node("tsm_pyramids:trap_2", {
description = "trapstone",
tiles = {"default_sandstone_brick.png^tsm_pyramids_crack.png^[transformR90"},
is_ground_content = true,
is_ground_content = false,
groups = {crumbly=2,cracky=3,falling_node=1,not_in_creative_inventory=1},
sounds = default.node_sound_stone_defaults(),
drop = "",