From 5bd44c21efb71fa6f0850ff2fe1e76af7ce42b3a Mon Sep 17 00:00:00 2001 From: cx384 Date: Sat, 13 May 2017 12:49:04 +0200 Subject: [PATCH] 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. --- mods/default/nodes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index a1da9216..76e88afd 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -1320,7 +1320,7 @@ minetest.register_node("default:bush_stem", { sounds = default.node_sound_wood_defaults(), selection_box = { 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(), selection_box = { 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}, }, })