From 9b91012854b15fff4ec3d3be220aa5fade224bc5 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 c7baf8a3e..8e33350bb 100644 --- a/mods/ENTITIES/mcl_mobs/init.lua +++ b/mods/ENTITIES/mcl_mobs/init.lua @@ -402,7 +402,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,