From 0be093c6d799a83e5aacd4eb7d7bf9d938b39307 Mon Sep 17 00:00:00 2001 From: teknomunk Date: Sat, 14 Sep 2024 19:04:39 -0500 Subject: [PATCH] Remove redundant check --- mods/ENTITIES/mcl_mobs/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_mobs/init.lua b/mods/ENTITIES/mcl_mobs/init.lua index 441384685..84584e79f 100644 --- a/mods/ENTITIES/mcl_mobs/init.lua +++ b/mods/ENTITIES/mcl_mobs/init.lua @@ -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},