mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
Fix unintentional collision box change
This commit is contained in:
parent
0aec616cef
commit
0f75387cc8
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ function mcl_mobs.register_arrow(name, def)
|
||||||
hit_object = def.hit_object,
|
hit_object = def.hit_object,
|
||||||
homing = def.homing,
|
homing = def.homing,
|
||||||
drop = def.drop or false, -- drops arrow as registered item when true
|
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,
|
timer = 0,
|
||||||
switch = 0,
|
switch = 0,
|
||||||
_lifetime = def._lifetime or 7,
|
_lifetime = def._lifetime or 7,
|
||||||
|
|
Loading…
Reference in a new issue