fix issue wit misses and then also like other stuff

This commit is contained in:
KadeDeveloper 2021-07-20 13:53:56 -07:00
parent 1425e57831
commit 1ade5d47e3
2 changed files with 6 additions and 4 deletions

View File

@ -1515,9 +1515,9 @@ class ChartingState extends MusicBeatState
var increase:Float = 0; var increase:Float = 0;
if (amount < 0) if (amount < 0)
increase = -0.04; increase = -0.02;
else else
increase = 0.04; increase = 0.02;
zoomFactor += increase; zoomFactor += increase;

View File

@ -1443,7 +1443,9 @@ class PlayState extends MusicBeatState
{ {
if (value == curStage) if (value == curStage)
{ {
trace(value + " - " + curStage);
introAlts = introAssets.get(value); introAlts = introAssets.get(value);
if (curStage.contains('school'))
altSuffix = '-pixel'; altSuffix = '-pixel';
} }
} }
@ -1671,7 +1673,7 @@ class PlayState extends MusicBeatState
ana.hitJudge = Ratings.CalculateRating(noteDiff, Math.floor((PlayStateChangeables.safeFrames / 60) * 1000)); ana.hitJudge = Ratings.CalculateRating(noteDiff, Math.floor((PlayStateChangeables.safeFrames / 60) * 1000));
ana.nearestNote = [coolNote.strumTime, coolNote.noteData, coolNote.sustainLength]; ana.nearestNote = [coolNote.strumTime, coolNote.noteData, coolNote.sustainLength];
} }
else if (!FlxG.save.data.ghost) else if (!FlxG.save.data.ghost && songStarted)
{ {
noteMiss(data, null); noteMiss(data, null);
ana.hit = false; ana.hit = false;