1
0

Change the selection_box of bush stems (#1733)

This is needed because you can't place a node above a bush stem when you are pointing at the bush stem.
Este cometimento está contido em:
cx384
2017-05-13 12:49:04 +02:00
cometido por SmallJoker
ascendente c7d558c09e
cometimento 5bd44c21ef

Ver ficheiro

@@ -1320,7 +1320,7 @@ minetest.register_node("default:bush_stem", {
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
selection_box = { selection_box = {
type = "fixed", type = "fixed",
fixed = {-7 / 16, -0.5, -7 / 16, 7 / 16, 0.54, 7 / 16}, fixed = {-7 / 16, -0.5, -7 / 16, 7 / 16, 0.5, 7 / 16},
}, },
}) })
@@ -1391,7 +1391,7 @@ minetest.register_node("default:acacia_bush_stem", {
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
selection_box = { selection_box = {
type = "fixed", type = "fixed",
fixed = {-7 / 16, -0.5, -7 / 16, 7 / 16, 0.54, 7 / 16}, fixed = {-7 / 16, -0.5, -7 / 16, 7 / 16, 0.5, 7 / 16},
}, },
}) })