diff --git a/osu.Game/Modes/ScoreProcesssor.cs b/osu.Game/Modes/ScoreProcesssor.cs index fd9b5ba0fe..7dfd7d04ce 100644 --- a/osu.Game/Modes/ScoreProcesssor.cs +++ b/osu.Game/Modes/ScoreProcesssor.cs @@ -21,6 +21,8 @@ namespace osu.Game.Modes public BindableInt Combo = new BindableInt(); + public BindableInt MaximumCombo = new BindableInt(); + public List Judgements = new List(); public virtual void AddJudgement(JudgementInfo judgement) @@ -29,6 +31,9 @@ namespace osu.Game.Modes UpdateCalculations(); judgement.ComboAtHit = (ulong)Combo.Value; + + if (Combo.Value > MaximumCombo.Value) + MaximumCombo.Value = Combo.Value; } ///