Update 'mods/ethereal/wood.lua'

This commit is contained in:
thunderdog1138 2020-07-15 23:00:13 +00:00
parent 33505b18af
commit ac0e56d035
1 changed files with 8 additions and 11 deletions

View File

@ -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,
})