Skip to content

Commit

Permalink
ye
Browse files Browse the repository at this point in the history
fixed incorrect strumc olors
  • Loading branch information
JordanSantiagoYT committed Nov 23, 2023
1 parent ef47a38 commit e103053
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -8239,7 +8239,7 @@ if (!allSicks && ClientPrefs.colorRatingHit && ClientPrefs.hudType != 'Tails Get
var spr:StrumNote = playerStrums.members[note.noteData];

if(spr != null) {
if (ClientPrefs.showNotes && ClientPrefs.enableColorShader) {
if ((ClientPrefs.noteColorStyle == 'Quant-Based' || ClientPrefs.rainbowNotes) && ClientPrefs.showNotes) {
spr.playAnim('confirm', true, note.colorSwap.hue, note.colorSwap.saturation, note.colorSwap.brightness);
} else {
spr.playAnim('confirm', true, 0, 0, 0, ClientPrefs.noteColorStyle == 'Char-Based', note.mustPress, note.gfNote);
Expand All @@ -8251,7 +8251,7 @@ if (!allSicks && ClientPrefs.colorRatingHit && ClientPrefs.hudType != 'Tails Get
var spr = playerStrums.members[note.noteData];
if(spr != null)
{
if (ClientPrefs.showNotes && ClientPrefs.enableColorShader) {
if ((ClientPrefs.noteColorStyle == 'Quant-Based' || ClientPrefs.rainbowNotes) && ClientPrefs.showNotes) {
spr.playAnim('confirm', true, note.colorSwap.hue, note.colorSwap.saturation, note.colorSwap.brightness);
} else {
spr.playAnim('confirm', true, 0, 0, 0, ClientPrefs.noteColorStyle == 'Char-Based', note.mustPress, note.gfNote);
Expand Down Expand Up @@ -8431,7 +8431,7 @@ if (!allSicks && ClientPrefs.colorRatingHit && ClientPrefs.hudType != 'Tails Get
final spr:StrumNote = opponentStrums.members[daNote.noteData];

if(spr != null) {
if (ClientPrefs.showNotes && ClientPrefs.enableColorShader) {
if ((ClientPrefs.noteColorStyle == 'Quant-Based' || ClientPrefs.rainbowNotes) && ClientPrefs.showNotes) {
spr.playAnim('confirm', true, daNote.colorSwap.hue, daNote.colorSwap.saturation, daNote.colorSwap.brightness);
} else {
spr.playAnim('confirm', true, 0, 0, 0, ClientPrefs.noteColorStyle == 'Char-Based', false, daNote.gfNote);
Expand Down

0 comments on commit e103053

Please sign in to comment.