From 1ade5d47e34f8fa14efdbbb0b952b62775eb8a1b Mon Sep 17 00:00:00 2001 From: KadeDeveloper Date: Tue, 20 Jul 2021 13:53:56 -0700 Subject: [PATCH] fix issue wit misses and then also like other stuff --- source/ChartingState.hx | 4 ++-- source/PlayState.hx | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index cf7e1be..b8ddf75 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -1515,9 +1515,9 @@ class ChartingState extends MusicBeatState var increase:Float = 0; if (amount < 0) - increase = -0.04; + increase = -0.02; else - increase = 0.04; + increase = 0.02; zoomFactor += increase; diff --git a/source/PlayState.hx b/source/PlayState.hx index 3415b4c..edbfe06 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -1443,8 +1443,10 @@ class PlayState extends MusicBeatState { if (value == curStage) { + trace(value + " - " + curStage); introAlts = introAssets.get(value); - altSuffix = '-pixel'; + if (curStage.contains('school')) + altSuffix = '-pixel'; } } @@ -1671,7 +1673,7 @@ class PlayState extends MusicBeatState ana.hitJudge = Ratings.CalculateRating(noteDiff, Math.floor((PlayStateChangeables.safeFrames / 60) * 1000)); ana.nearestNote = [coolNote.strumTime, coolNote.noteData, coolNote.sustainLength]; } - else if (!FlxG.save.data.ghost) + else if (!FlxG.save.data.ghost && songStarted) { noteMiss(data, null); ana.hit = false;