Merge remote-tracking branch 'upstream/master' into patch-2

This commit is contained in:
Lucky56
2021-06-18 07:49:02 +02:00
5 changed files with 99 additions and 27 deletions

View File

@ -1862,9 +1862,7 @@ class PlayState extends MusicBeatState
super.update(elapsed);
scoreTxt.text = Ratings.CalculateRanking(songScore,songScoreDef,nps,maxNPS,accuracy);
if (!FlxG.save.data.accuracyDisplay)
scoreTxt.text = "Score: " + songScore;
scoreTxt.text = Ratings.CalculateRanking(songScore,songScoreDef,nps,maxNPS,accuracy);
if (FlxG.keys.justPressed.ENTER && startedCountdown && canPause)
{
@ -2533,6 +2531,7 @@ class PlayState extends MusicBeatState
#if !switch
Highscore.saveScore(songHighscore, Math.round(songScore), storyDifficulty);
Highscore.saveCombo(songHighscore, Ratings.GenerateLetterRank(accuracy), storyDifficulty);
#end
}