diff --git a/Assets/ManagedResources/~Lua/Modules/Battle/Logic/Misc/BattleUtil.lua b/Assets/ManagedResources/~Lua/Modules/Battle/Logic/Misc/BattleUtil.lua index 058d62a318..5c0712028f 100644 --- a/Assets/ManagedResources/~Lua/Modules/Battle/Logic/Misc/BattleUtil.lua +++ b/Assets/ManagedResources/~Lua/Modules/Battle/Logic/Misc/BattleUtil.lua @@ -374,10 +374,8 @@ end function BattleUtil.ChecklistIsContainValue(_list,_value) if _list and _value then for key, value in pairs(_list) do - if value==_value then + if value ==_value then return true - else - return false end end end