Fix fruit representation not cycling as often as it should

This commit is contained in:
Dean Herbert 2020-02-19 14:41:25 +09:00
parent dff218afd1
commit d3844f912a
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public float X
public int IndexInBeatmap { get; set; }
public virtual FruitVisualRepresentation VisualRepresentation => (FruitVisualRepresentation)(ComboIndex % 4);
public virtual FruitVisualRepresentation VisualRepresentation => (FruitVisualRepresentation)(IndexInBeatmap % 4);
public virtual bool NewCombo { get; set; }