PRoConEvents.MULTIbalancer.AttackerTicketsWithinRangeOfMax C# (CSharp) 메소드

AttackerTicketsWithinRangeOfMax() 개인적인 메소드

private AttackerTicketsWithinRangeOfMax ( double attacker ) : bool
attacker double
리턴 bool
        private bool AttackerTicketsWithinRangeOfMax(double attacker)
        {
            if (attacker >= fMaxTickets) return true;
            PerModeSettings perMode = GetPerModeSettings();
            return (attacker + Math.Min(12, 2 * perMode.SecondsToCheckForNewStage / 5) >= fMaxTickets);
        }
MULTIbalancer