From ae238d833a2e70e88e08d7ff70c56999290697a4 Mon Sep 17 00:00:00 2001 From: CharlesCatYT Date: Sun, 18 Feb 2024 14:00:13 -0500 Subject: [PATCH] uh.. --- .github/workflows/main.yml | 2 +- source/states/PlayState.hx | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 36f61d2..fd225ee 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -81,7 +81,7 @@ jobs: haxelib git systools https://github.com/haya3218/retools shell: cmd - name: Skip SScript setup mode - run: echo 'oy9:showMacroty8:loopCosti25y10:includeAllfg' >> %USERPROFILE%/settings.cocoa + run: echo oy9:showMacroty8:loopCosti25y10:includeAllfg >> %USERPROFILE%/settings.cocoa shell: cmd - name: Rebuild systools run: haxelib run lime rebuild systools windows diff --git a/source/states/PlayState.hx b/source/states/PlayState.hx index f54285f..430df32 100644 --- a/source/states/PlayState.hx +++ b/source/states/PlayState.hx @@ -3046,8 +3046,10 @@ class PlayState extends MusicBeatState public function spawnNoteSplashOnNote(note:Note) { if(note != null) { var strum:StrumNote = playerStrums.members[note.noteData]; - if(strum != null) - spawnNoteSplash(strum.x, strum.y, note.noteData, note); + if(strum != null) { + var splash = spawnNoteSplash(strum.x, strum.y, note.noteData, note); + splash.alpha = strum.alpha; + } } }