Merge remote-tracking branch 'upstream/master'
@ -138,6 +138,7 @@ minetest.register_node("ferns:tree_fern_leaves_giant", {
|
||||
attached_node=1,
|
||||
not_in_creative_inventory=1
|
||||
},
|
||||
is_ground_content = false,
|
||||
drop = {
|
||||
max_items = 2,
|
||||
items = {
|
||||
@ -179,6 +180,7 @@ minetest.register_node("ferns:tree_fern_leave_big", {
|
||||
attached_node=1,
|
||||
not_in_creative_inventory=1
|
||||
},
|
||||
is_ground_content = false,
|
||||
drop = "",
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
after_destruct = function(pos,oldnode)
|
||||
@ -217,6 +219,7 @@ minetest.register_node("ferns:tree_fern_leave_big_end", {
|
||||
attached_node=1,
|
||||
not_in_creative_inventory=1
|
||||
},
|
||||
is_ground_content = false,
|
||||
drop = "",
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
@ -255,6 +258,7 @@ minetest.register_node("ferns:fern_trunk_big_top", {
|
||||
not_in_creative_inventory=1,
|
||||
leafdecay=3 -- to support vines
|
||||
},
|
||||
is_ground_content = false,
|
||||
drop = "ferns:fern_trunk_big",
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
})
|
||||
@ -281,6 +285,7 @@ minetest.register_node("ferns:fern_trunk_big", {
|
||||
fixed = {-1/4, -1/2, -1/4, 1/4, 1/2, 1/4},
|
||||
},
|
||||
groups = {tree=1,choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1},
|
||||
is_ground_content = false,
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
after_dig_node = function(pos, node, metadata, digger)
|
||||
if digger == nil then return end
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 765 B After Width: | Height: | Size: 671 B |
Before Width: | Height: | Size: 308 B |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 640 B |
Before Width: | Height: | Size: 623 B |
Before Width: | Height: | Size: 393 B |
Before Width: | Height: | Size: 414 B |
Before Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 544 B |
Before Width: | Height: | Size: 681 B |
Before Width: | Height: | Size: 368 B |
Before Width: | Height: | Size: 112 B |
Before Width: | Height: | Size: 461 B |
Before Width: | Height: | Size: 700 B |
Before Width: | Height: | Size: 677 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 664 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 669 B |
Before Width: | Height: | Size: 814 B |
Before Width: | Height: | Size: 714 B |
Before Width: | Height: | Size: 230 B |
Before Width: | Height: | Size: 177 B |
Before Width: | Height: | Size: 204 B |
Before Width: | Height: | Size: 251 B |
Before Width: | Height: | Size: 279 B |
Before Width: | Height: | Size: 712 B |
Before Width: | Height: | Size: 457 B |
Before Width: | Height: | Size: 522 B |
@ -82,6 +82,7 @@ minetest.register_node("ferns:tree_fern_leaves", {
|
||||
inventory_image = "ferns_fern_tree_inv.png",
|
||||
walkable = false,
|
||||
groups = {snappy=3,flammable=2,attached_node=1},
|
||||
is_ground_content = false,
|
||||
drop = {
|
||||
max_items = 2,
|
||||
items = {
|
||||
@ -113,6 +114,7 @@ minetest.register_node("ferns:tree_fern_leaves_02", {
|
||||
tiles = {"ferns_fern_big.png"},
|
||||
walkable = false,
|
||||
groups = {snappy=3,flammable=2,attached_node=1,not_in_creative_inventory=1},
|
||||
is_ground_content = false,
|
||||
drop = {
|
||||
max_items = 2,
|
||||
items = {
|
||||
@ -159,6 +161,7 @@ minetest.register_node("ferns:fern_trunk", {
|
||||
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
|
||||
},
|
||||
groups = {tree=1,choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1},
|
||||
is_ground_content = false,
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
after_dig_node = function(pos, node, metadata, digger)
|
||||
default.dig_up(pos, node, digger)
|
||||
|