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 164f44e commit 0a3e2beCopy full SHA for 0a3e2be
source/funkin/game/Note.hx
@@ -154,7 +154,8 @@ class Note extends FlxSprite
154
case 0:
155
animation.addByPrefix('scroll', 'purple0');
156
animation.addByPrefix('hold', 'purple hold piece');
157
- animation.addByPrefix('holdend', frames.getByName('pruple end hold') != null ? 'pruple end hold' : 'purple hold end');
+ animation.addByPrefix('holdend', 'purple hold end');
158
+ if (frames.getByName("pruple end hold")) animation.addByPrefix("holdend", "pruple end hold");
159
case 1:
160
animation.addByPrefix('scroll', 'blue0');
161
animation.addByPrefix('hold', 'blue hold piece');
0 commit comments