From a82d2adf1e850d56cade3d302e4a4e3c34b46172 Mon Sep 17 00:00:00 2001 From: teknomunk Date: Sat, 21 Sep 2024 19:24:39 -0500 Subject: [PATCH] Fix unintentional collision box change --- mods/ENTITIES/mcl_mobs/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_mobs/init.lua b/mods/ENTITIES/mcl_mobs/init.lua index 28dc1c543..12d92af5b 100644 --- a/mods/ENTITIES/mcl_mobs/init.lua +++ b/mods/ENTITIES/mcl_mobs/init.lua @@ -405,7 +405,7 @@ function mcl_mobs.register_arrow(name, def) hit_object = def.hit_object, homing = def.homing, drop = def.drop or false, -- drops arrow as registered item when true - collisionbox = {0, 0, 0, 0, 0, 0}, -- remove box around arrows + collisionbox = def.collisionbox or {0, 0, 0, 0, 0, 0}, -- remove box around arrows timer = 0, switch = 0, _lifetime = def._lifetime or 7,