diff --git a/src/game/RhythmState.java b/src/game/RhythmState.java index bc923ef..b5b701f 100644 --- a/src/game/RhythmState.java +++ b/src/game/RhythmState.java @@ -267,8 +267,8 @@ public void click() { if (Math.abs(hitobject.duration) <= LENIENCE_TIME) { points++; // increments points perfection += 1.0 - Math.abs(hitobject.duration) / LENIENCE_TIME; + combo++; // increases combo } - combo++; // increases combo break; // breaks out of loop so that only one hit object is clicked at // once }