From 5f98aa7fb58a7bd2c5f80e7f66c066d9813917d1 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Fri, 18 Mar 2022 21:47:30 -0400 Subject: [PATCH] busted input fix (breaks pyro test probably) --- source/funkin/play/PlayState.hx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index d23a1daa3..d06bcb716 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -1310,7 +1310,10 @@ class PlayState extends MusicBeatState oldNote = null; var swagNote:Note = new Note(daStrumTime, daNoteData, oldNote); - swagNote.data = songNotes; + // swagNote.data = songNotes; + swagNote.data.sustainLength = songNotes.sustainLength; + swagNote.data.altNote = songNotes.altNote; + swagNote.scrollFactor.set(0, 0); var susLength:Float = swagNote.data.sustainLength;