Skip to content

Commit

Permalink
Change the selection_box of bush stems (#1733)
Browse files Browse the repository at this point in the history
This is needed because you can't place a node above a bush stem when you are pointing at the bush stem.
  • Loading branch information
cx384 authored and SmallJoker committed May 13, 2017
1 parent c7d558c commit 5bd44c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/default/nodes.lua
Expand Up @@ -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},
},
})
Expand Down Expand Up @@ -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},
},
})
Expand Down

0 comments on commit 5bd44c2

Please sign in to comment.