Add fire metadata to many nodes (unused for now)
This commit is contained in:
parent
6a77a54034
commit
e268370452
24 changed files with 51 additions and 42 deletions
|
@ -219,7 +219,7 @@ S("You can copy the pattern of a banner by placing two banners of the same color
|
|||
wield_image = "mcl_banners_item_base.png",
|
||||
|
||||
selection_box = {type = "fixed", fixed= {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} },
|
||||
groups = {axey=1,handy=1, attached_node = 1, not_in_creative_inventory = 1, not_in_craft_guide = 1, material_wood=1, dig_by_piston=1 },
|
||||
groups = {axey=1,handy=1, attached_node = 1, not_in_creative_inventory = 1, not_in_craft_guide = 1, material_wood=1, dig_by_piston=1, flammable=-1 },
|
||||
stack_max = 16,
|
||||
sounds = node_sounds,
|
||||
drop = "", -- Item drops are handled in entity code
|
||||
|
@ -263,7 +263,7 @@ minetest.register_node("mcl_banners:hanging_banner", {
|
|||
wall_bottom = { -0.49, -0.49, -0.49, -0.41, -0.41, 0.49 },
|
||||
},
|
||||
selection_box = {type = "wallmounted", wall_side = {-0.5, -0.5, -0.5, -4/16, 0.5, 0.5} },
|
||||
groups = {axey=1,handy=1, attached_node = 1, not_in_creative_inventory = 1, not_in_craft_guide = 1, material_wood=1 },
|
||||
groups = {axey=1,handy=1, attached_node = 1, not_in_creative_inventory = 1, not_in_craft_guide = 1, material_wood=1, flammable=-1 },
|
||||
stack_max = 16,
|
||||
sounds = node_sounds,
|
||||
drop = "", -- Item drops are handled in entity code
|
||||
|
@ -326,7 +326,7 @@ for colorid, colortab in pairs(mcl_banners.colors) do
|
|||
wield_image = inv,
|
||||
-- Banner group groups together the banner items, but not the nodes.
|
||||
-- Used for crafting.
|
||||
groups = { banner = 1, deco_block = 1, },
|
||||
groups = { banner = 1, deco_block = 1, flammable = -1 },
|
||||
stack_max = 16,
|
||||
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue