Skip to content

Commit

Permalink
one more thing (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanSantiagoYT authored Jun 16, 2023
1 parent 5e8c1ff commit 56cab3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -6060,7 +6060,7 @@ if (!allSicks && ClientPrefs.colorRatingFC && songMisses > 0)
if (noteDiff <= ClientPrefs.marvWindow && !ClientPrefs.noMarvJudge) msTxt.color = FlxColor.YELLOW;
if (noteDiff <= ClientPrefs.sickWindow && ClientPrefs.noMarvJudge) msTxt.color = FlxColor.CYAN;
if (noteDiff <= ClientPrefs.sickWindow && noteDiff >= ClientPrefs.marvWindow && !ClientPrefs.noMarvJudge) msTxt.color = FlxColor.CYAN;
if (noteDiff >= ClientPrefs.goodWindow) msTxt.color = FlxColor.LIME;
if (noteDiff >= ClientPrefs.sickWindow) msTxt.color = FlxColor.LIME;
if (noteDiff >= ClientPrefs.goodWindow) msTxt.color = FlxColor.ORANGE;
if (noteDiff >= ClientPrefs.badWindow) msTxt.color = FlxColor.RED;
if (!msTxt.visible) msTxt.color = FlxColor.WHITE;
Expand Down

0 comments on commit 56cab3c

Please sign in to comment.