AdEvade.AdEvade.CheckDodgeOnlyDangerous C# (CSharp) Method

CheckDodgeOnlyDangerous() public static method

public static CheckDodgeOnlyDangerous ( ) : void
return void
        public static void CheckDodgeOnlyDangerous() //Dodge only dangerous event
        {
            bool bDodgeOnlyDangerous = IsDodgeDangerousEnabled();

            if (DodgeOnlyDangerous && bDodgeOnlyDangerous)
            {
                SpellDetector.RemoveNonDangerousSpells();
                DodgeOnlyDangerous = true;
            }
            else
            {
                DodgeOnlyDangerous = bDodgeOnlyDangerous;
            }
        }