Fix unintentional collision box change

This commit is contained in:
teknomunk 2024-09-21 19:24:39 -05:00
parent 0aec616cef
commit 0f75387cc8

View file

@ -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,