make it like funny

ok so hear me out, this is funny.
This commit is contained in:
Kade M 2021-05-06 15:09:23 -07:00 committed by GitHub
parent b2929d9ab8
commit 5839e2ae18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,6 +107,9 @@ class Ratings
// trace('Hit Info\nDifference: ' + noteDiff + '\nZone: ' + Conductor.safeZoneOffset * 1.5 + "\nTS: " + customTimeScale + "\nLate: " + 155 * customTimeScale); // 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 if (noteDiff > 166 * customTimeScale) // so god damn early its a miss
return "miss"; return "miss";
if (noteDiff > 135 * customTimeScale) // way early if (noteDiff > 135 * customTimeScale) // way early
@ -123,8 +126,6 @@ class Ratings
return "shit"; return "shit";
else if (noteDiff < -166 * customTimeScale) // so god damn late its a miss else if (noteDiff < -166 * customTimeScale) // so god damn late its a miss
return "miss"; return "miss";
else if (FlxG.save.data.botplay)
return "sick";
return "sick"; return "sick";
} }