Remove redundant check

This commit is contained in:
teknomunk 2024-09-14 19:04:39 -05:00
parent 930835891d
commit 0be093c6d7

View File

@ -485,7 +485,7 @@ function mcl_mobs.register_arrow(name, def)
end
-- 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({
pos = pos,
velocity = {x = 0, y = 0, z = 0},