We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b55fb41 commit 09da78cCopy full SHA for 09da78c
source/funkin/game/Note.hx
@@ -154,9 +154,8 @@ class Note extends FlxSprite
154
case 0:
155
animation.addByPrefix('scroll', 'purple0');
156
animation.addByPrefix('hold', 'purple hold piece');
157
- if (frames.getByName("pruple end hold") != null)
158
- animation.addByPrefix("holdend", "pruple end hold");
159
- else
+ animation.addByPrefix("holdend", "pruple end hold");
+ if (animation.exists("holdend") != true) // null or false
160
animation.addByPrefix('holdend', 'purple hold end');
161
case 1:
162
animation.addByPrefix('scroll', 'blue0');
0 commit comments