forked from thunderdog1138/star_wars
Update 'mods/ethereal/wood.lua'
This commit is contained in:
parent
33505b18af
commit
ac0e56d035
|
@ -264,23 +264,20 @@ minetest.register_craft({
|
|||
burntime = 1,
|
||||
})
|
||||
|
||||
-- Bush stem
|
||||
-- bush stem
|
||||
minetest.register_node("ethereal:bush_stem", {
|
||||
description = S("Bush Stem"),
|
||||
drawtype = "plantlike",
|
||||
tiles = {"bush_stem.png"},
|
||||
inventory_image = "bush_stem.png",
|
||||
wield_image = "bush_stem.png",
|
||||
visual_scale = 1.41,
|
||||
tiles = {"ethereal_bush_stem.png"},
|
||||
inventory_image = "ethereal_bush_stem.png",
|
||||
wield_image = "ethereal_bush_stem.png",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = true,
|
||||
groups = {choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3}
|
||||
fixed = {-7 / 16, -0.5, -7 / 16, 7 / 16, 0.5, 7 / 16},
|
||||
},
|
||||
groups = {choppy = 3, oddly_breakable_by_hand = 1, flammable = 2},--tree = 1
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
after_dig_node = function(pos, node, metadata, digger)
|
||||
default.dig_up(pos, node, digger)
|
||||
end,
|
||||
})
|
Loading…
Reference in New Issue