Auto_Carry_Vayne.Logic.Tumble.IsNotIntoTraps C# (CSharp) Method

IsNotIntoTraps() static private method

static private IsNotIntoTraps ( this position ) : bool
position this
return bool
        static bool IsNotIntoTraps(this Vector3 position)
        {
            var tarpsnear = Traps.EnemyTraps.FindAll(t => t.Distance(position) <= 5);

            if (tarpsnear != null)
            {
                return false;
            }
            return true;
        }