diff --git a/source/Ratings.hx b/source/Ratings.hx index a4f40cf..a8e5ccf 100644 --- a/source/Ratings.hx +++ b/source/Ratings.hx @@ -107,6 +107,9 @@ class Ratings // trace('Hit Info\nDifference: ' + noteDiff + '\nZone: ' + Conductor.safeZoneOffset * 1.5 + "\nTS: " + customTimeScale + "\nLate: " + 155 * customTimeScale); + if (FlxG.save.data.botplay) + return "good"; // FUNNY + if (noteDiff > 166 * customTimeScale) // so god damn early its a miss return "miss"; if (noteDiff > 135 * customTimeScale) // way early @@ -123,8 +126,6 @@ class Ratings return "shit"; else if (noteDiff < -166 * customTimeScale) // so god damn late its a miss return "miss"; - else if (FlxG.save.data.botplay) - return "sick"; return "sick"; } @@ -137,4 +138,4 @@ class Ratings " | Accuracy:" + (FlxG.save.data.botplay ? "N/A" : HelperFunctions.truncateFloat(accuracy, 2) + " %") + // Accuracy " | " + GenerateLetterRank(accuracy) : ""); // Letter Rank } -} \ No newline at end of file +}