From 4bf490d3d48c336acffd95f0017f3275ed8ad732 Mon Sep 17 00:00:00 2001 From: JordanSantiagoYT Date: Sun, 12 Jan 2025 00:19:14 -0500 Subject: [PATCH] fixed note alpha not working correctly part 2 closes #847 --- source/Note.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Note.hx b/source/Note.hx index 2ae716ff184..21ef1cd8e28 100644 --- a/source/Note.hx +++ b/source/Note.hx @@ -669,12 +669,12 @@ class Note extends FlxSprite if (!mustPress) { visible = ClientPrefs.opponentStrums; - alpha = multAlpha = ClientPrefs.middleScroll ? ClientPrefs.oppNoteAlpha : 1; + alpha = ClientPrefs.middleScroll ? ClientPrefs.oppNoteAlpha : 1; } else { if (!visible) visible = true; - for (i in [alpha, multAlpha]) if (i != 1) i = 1; + if (alpha != 1) alpha = 1; //if (multAlpha != 1) multAlpha = 1; } if (flipY) flipY = false; }