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;
if (amount < 0)
increase = -0.04;
increase = -0.02;
else
increase = 0.04;
increase = 0.02;
zoomFactor += increase;

View File

@ -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;