forked from VoxeLibre/VoxeLibre
End stuff is not ground content
This commit is contained in:
parent
d737108e4e
commit
78dd7f4826
|
@ -296,7 +296,7 @@ minetest.register_node("flowers:pot",{
|
|||
inventory_image="flowers_pot_inventory.png",
|
||||
paramtype = "light",
|
||||
groups = {dig_immediate=3,deco_block=1},
|
||||
stack_max = 16,
|
||||
stack_max = 64,
|
||||
sounds = default.node_sound_defaults(),
|
||||
after_place_node = function(pos, placer, itemstack)
|
||||
local meta = minetest.get_meta(pos)
|
||||
|
|
|
@ -52,6 +52,7 @@ minetest.register_node("mcl_end:end_rod", {
|
|||
"mcl_end_end_rod_side.png",
|
||||
},
|
||||
drawtype = "nodebox",
|
||||
is_ground_content = false,
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
light_source = 14,
|
||||
|
@ -81,6 +82,7 @@ minetest.register_node("mcl_end:dragon_egg", {
|
|||
"mcl_end_dragon_egg.png",
|
||||
},
|
||||
drawtype = "nodebox",
|
||||
is_ground_content = false,
|
||||
paramtype = "light",
|
||||
light_source = 1,
|
||||
node_box = {
|
||||
|
|
Loading…
Reference in New Issue