Skip to content

Commit

Permalink
Fix fake icon appearing in play mode
Browse files Browse the repository at this point in the history
  • Loading branch information
tillvit committed Dec 29, 2023
1 parent 288bc5a commit 93c1d08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class DanceDefaultNoteObject extends Container implements NoteObject {
}
update(renderer: ChartRenderer) {
if (this.type == "Fake") {
this.note.icon!.visible = renderer.chartManager.getMode() == EditMode.Play
this.note.icon!.visible = renderer.chartManager.getMode() != EditMode.Play
}
}
}

0 comments on commit 93c1d08

Please sign in to comment.