mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
Remove redundant check
This commit is contained in:
parent
930835891d
commit
0be093c6d7
1 changed files with 1 additions and 1 deletions
|
@ -485,7 +485,7 @@ function mcl_mobs.register_arrow(name, def)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- does arrow have a tail (fireball)
|
-- does arrow have a tail (fireball)
|
||||||
if def.tail and def.tail == 1 and def.tail_texture then
|
if def.tail == 1 and def.tail_texture then
|
||||||
minetest.add_particle({
|
minetest.add_particle({
|
||||||
pos = pos,
|
pos = pos,
|
||||||
velocity = {x = 0, y = 0, z = 0},
|
velocity = {x = 0, y = 0, z = 0},
|
||||||
|
|
Loading…
Reference in a new issue