Fix combo index being wrong

This commit is contained in:
Dean Herbert
2018-06-29 01:34:47 +09:00
parent 71b759841b
commit 9d4bc7b630
2 changed files with 26 additions and 3 deletions

View File

@ -54,9 +54,9 @@ namespace osu.Game.Rulesets.Osu.Objects
public virtual bool NewCombo { get; set; }
public int IndexInCurrentCombo { get; set; }
public virtual int IndexInCurrentCombo { get; set; }
public int ComboIndex { get; set; }
public virtual int ComboIndex { get; set; }
public bool LastInCombo { get; set; }