forked from VoxeLibre/VoxeLibre
Decrease collision box of cactus
This commit is contained in:
parent
bcc07bb2aa
commit
faa7e5016d
|
@ -1149,7 +1149,17 @@ minetest.register_node("mcl_core:cactus", {
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {
|
fixed = {
|
||||||
{-7/16, -8/16, -7/16, 7/16, 8/16, 7/16}, -- Main Body
|
{-7/16, -8/16, -7/16, 7/16, 8/16, 7/16}, -- Main body
|
||||||
|
{-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
|
||||||
|
},
|
||||||
|
},
|
||||||
|
collision_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-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
|
||||||
{-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
|
||||||
|
|
Loading…
Reference in New Issue