mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-01-24 16:01:11 +01:00
Fix unintentional collision box change
This commit is contained in:
parent
b821f3d72f
commit
f9aa61ff5a
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue