mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-12-04 16:53:46 +01:00
Fix unintentional collision box change
This commit is contained in:
parent
3cd9da98a7
commit
9b91012854
@ -402,7 +402,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 New Issue
Block a user