GR.Gambling.Blackjack.BonusPairsAgent.ResetShoe C# (CSharp) Method

ResetShoe() public method

public ResetShoe ( bool forced ) : bool
forced bool
return bool
        public override bool ResetShoe(bool forced)
        {
            if (!forced) EvaluateEV();

            if (forced || shoe_ev < -0.0068)
            {
                shoe.Reset();
                InitializeRound();

                return true;
            }

            return false;
        }