forked from VoxeLibre/VoxeLibre
Fix is_ground content (Nether)
This commit is contained in:
parent
787981c309
commit
8f500c587c
|
@ -21,7 +21,7 @@ minetest.register_node("mcl_nether:quartz_ore", {
|
||||||
description = "Nether Quartz Ore",
|
description = "Nether Quartz Ore",
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
tiles = {"mcl_nether_quartz_ore.png"},
|
tiles = {"mcl_nether_quartz_ore.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = true,
|
||||||
groups = {cracky=2,building_block=1},
|
groups = {cracky=2,building_block=1},
|
||||||
drop = 'mcl_nether:quartz_crystal',
|
drop = 'mcl_nether:quartz_crystal',
|
||||||
sounds = mcl_core.node_sound_stone_defaults(),
|
sounds = mcl_core.node_sound_stone_defaults(),
|
||||||
|
@ -30,6 +30,7 @@ minetest.register_node("mcl_nether:quartz_ore", {
|
||||||
minetest.register_node("mcl_nether:quartz_block", {
|
minetest.register_node("mcl_nether:quartz_block", {
|
||||||
description = "Block of Quartz",
|
description = "Block of Quartz",
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
|
is_ground_content = false,
|
||||||
tiles = {"mcl_nether_quartz_block_top.png", "mcl_nether_quartz_block_bottom.png", "mcl_nether_quartz_block_side.png"},
|
tiles = {"mcl_nether_quartz_block_top.png", "mcl_nether_quartz_block_bottom.png", "mcl_nether_quartz_block_side.png"},
|
||||||
groups = {cracky=3,quartz_block=1,building_block=1},
|
groups = {cracky=3,quartz_block=1,building_block=1},
|
||||||
sounds = mcl_core.node_sound_stone_defaults(),
|
sounds = mcl_core.node_sound_stone_defaults(),
|
||||||
|
@ -48,7 +49,7 @@ minetest.register_node("mcl_nether:quartz_pillar", {
|
||||||
description = "Pillar Quartz Block",
|
description = "Pillar Quartz Block",
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
on_place = minetest.rotate_node,
|
on_place = minetest.rotate_node,
|
||||||
tiles = {"mcl_nether_quartz_pillar_top.png", "mcl_nether_quartz_pillar_top.png", "mcl_nether_quartz_pillar_side.png"},
|
tiles = {"mcl_nether_quartz_pillar_top.png", "mcl_nether_quartz_pillar_top.png", "mcl_nether_quartz_pillar_side.png"},
|
||||||
groups = {cracky=3,quartz_block=1,building_block=1},
|
groups = {cracky=3,quartz_block=1,building_block=1},
|
||||||
|
|
Loading…
Reference in New Issue