From 28d1e255266b4573b2193bf77e603f592bdac1ed Mon Sep 17 00:00:00 2001 From: KadeDeveloper Date: Wed, 11 Aug 2021 18:45:33 -0700 Subject: [PATCH] bruh bruh bruh --- source/PlayState.hx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index eba534a..9b0a432 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -3940,8 +3940,10 @@ class PlayState extends MusicBeatState if (PlayStateChangeables.botPlay) notes.forEachAlive(function(daNote:Note) { - daNote.rating = Ratings.CalculateRating(-(daNote.strumTime - Conductor.songPosition), Math.floor((PlayStateChangeables.safeFrames / 60) * 1000)); - if (daNote.mustPress && daNote.rating == "sick") + var diff = -(daNote.strumTime - Conductor.songPosition); + + daNote.rating = Ratings.CalculateRating(diff, Math.floor((PlayStateChangeables.safeFrames / 60) * 1000)); + if (daNote.mustPress && daNote.rating == "sick" || (diff > 0 && daNote.mustPress)) { // Force good note hit regardless if it's too late to hit it or not as a fail safe if (loadRep)