We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b811ca9 commit f6ac4caCopy full SHA for f6ac4ca
1 file changed
source/funkin/ui/freeplay/FreeplayState.hx
@@ -1765,7 +1765,8 @@ class FreeplayState extends MusicBeatSubState
1765
1766
var songScore:Null<SaveScoreData> = Save.instance.getSongScore(daSong.data.id, currentDifficulty, currentVariation);
1767
intendedScore = songScore?.score ?? 0;
1768
- intendedCompletion = songScore == null ? 0.0 : ((songScore.tallies.sick + songScore.tallies.good) / songScore.tallies.totalNotes);
+ intendedCompletion = songScore == null ? 0.0 : ((songScore.tallies.sick +
1769
+ songScore.tallies.good - songScore.tallies.missed) / songScore.tallies.totalNotes);
1770
rememberedDifficulty = currentDifficulty;
1771
grpCapsules.members[curSelected].refreshDisplay();
1772
}
0 commit comments