From 33ba548fa2268cce327b8d3cafd181622fa8bdfc Mon Sep 17 00:00:00 2001 From: Kevin Ngo Date: Mon, 29 Oct 2018 22:34:38 -0700 Subject: [PATCH] fix max combo text --- src/state/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/state/index.js b/src/state/index.js index 32c8482..23db94f 100644 --- a/src/state/index.js +++ b/src/state/index.js @@ -372,6 +372,7 @@ AFRAME.registerState({ (state.score.beatsMissed + state.score.beatsHit); state.score.accuracy = accuracy; state.score.accuracyText = `${(accuracy * 100).toFixed()}%`; + state.score.maxComboText = `MAX COMBO - ${state.score.maxCombo}`; if (accuracy === 1) { state.rank = 'S';