forked from VoxeLibre/VoxeLibre
Fix incorrect cactus collision box
This commit is contained in:
parent
793152b1e6
commit
7369474bc6
|
@ -1158,13 +1158,7 @@ minetest.register_node("mcl_core:cactus", {
|
||||||
},
|
},
|
||||||
collision_box = {
|
collision_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {
|
fixed = {-7/16, -8/16, -7/16, 7/16, 7/16, 7/16}, -- Main body. slightly lower than node box
|
||||||
{-7/16, -8/16, -7/16, 7/16, 7/16, 7/16}, -- Main body. slightly lower than node box
|
|
||||||
{-8/16, -8/16, -7/16, 8/16, 8/16, -7/16}, -- Spikes
|
|
||||||
{-8/16, -8/16, 7/16, 8/16, 8/16, 7/16}, -- Spikes
|
|
||||||
{-7/16, -8/16, -8/16, -7/16, 8/16, 8/16}, -- Spikes
|
|
||||||
{7/16, -8/16, 8/16, 7/16, 8/16, -8/16}, -- Spikes
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
|
Loading…
Reference in New Issue