From 2acf1719c262dfa6a951df1a3aaf26c73f6c4043 Mon Sep 17 00:00:00 2001 From: Lucky56 <55949451+Lucky-56@users.noreply.github.com> Date: Tue, 15 Jun 2021 01:22:20 +0200 Subject: [PATCH] how tf did they get here --- source/PlayState.hx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 726854c..a59c10e 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -975,8 +975,6 @@ class PlayState extends MusicBeatState scoreTxt = new FlxText(FlxG.width / 2 - 235, healthBarBG.y + 50, 0, "", 20); if (!FlxG.save.data.accuracyDisplay) scoreTxt.x = healthBarBG.x + healthBarBG.width / 2; - if (FlxG.save.data.healthDisplay) - scoreTxt.x += -120; scoreTxt.setFormat(Paths.font("vcr.ttf"), 16, FlxColor.WHITE, CENTER, FlxTextBorderStyle.OUTLINE,FlxColor.BLACK); scoreTxt.scrollFactor.set(); if (offsetTesting) @@ -1853,9 +1851,9 @@ class PlayState extends MusicBeatState super.update(elapsed); - var healthInt:Int = Std.int(health * 50); - - scoreTxt.text = Ratings.CalculateRanking(songScore,songScoreDef,nps,maxNPS,healthInt,accuracy); + scoreTxt.text = Ratings.CalculateRanking(songScore,songScoreDef,nps,maxNPS,accuracy); + if (!FlxG.save.data.accuracyDisplay) + scoreTxt.text = "Score: " + songScore; if (FlxG.keys.justPressed.ENTER && startedCountdown && canPause) {