From 7369474bc636330c5c8e881287eb15453dc450bd Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 21 Mar 2017 22:18:54 +0100 Subject: [PATCH] Fix incorrect cactus collision box --- mods/ITEMS/mcl_core/nodes.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/mods/ITEMS/mcl_core/nodes.lua b/mods/ITEMS/mcl_core/nodes.lua index 72afe2f9c..e0a75dbda 100644 --- a/mods/ITEMS/mcl_core/nodes.lua +++ b/mods/ITEMS/mcl_core/nodes.lua @@ -1158,13 +1158,7 @@ minetest.register_node("mcl_core:cactus", { }, 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 - {-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 - }, + fixed = {-7/16, -8/16, -7/16, 7/16, 7/16, 7/16}, -- Main body. slightly lower than node box }, selection_box = { type = "fixed",