Skip to content

Commit

Permalink
uh..
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Feb 18, 2024
1 parent 62d6b20 commit ae238d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions source/states/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}

Expand Down

0 comments on commit ae238d8

Please sign in to comment.