Skip to content

Commit 0a3e2be

Browse files
authored
fix left hold thanks axieaxolotl_
1 parent 164f44e commit 0a3e2be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/funkin/game/Note.hx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,8 @@ class Note extends FlxSprite
154154
case 0:
155155
animation.addByPrefix('scroll', 'purple0');
156156
animation.addByPrefix('hold', 'purple hold piece');
157-
animation.addByPrefix('holdend', frames.getByName('pruple end hold') != null ? 'pruple end hold' : 'purple hold end');
157+
animation.addByPrefix('holdend', 'purple hold end');
158+
if (frames.getByName("pruple end hold")) animation.addByPrefix("holdend", "pruple end hold");
158159
case 1:
159160
animation.addByPrefix('scroll', 'blue0');
160161
animation.addByPrefix('hold', 'blue hold piece');

0 commit comments

Comments
 (0)