Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
poec987 committed Jun 26, 2024
1 parent a7048d3 commit 49f7763
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,7 @@ class PlayState extends MusicBeatState

noteTypeCheck(daNote, true, true);

if (daNote.noteType != "No Animation" && daNote.noteType != "Laugh") {
if (daNote.noteType != "No Animation" && daNote.noteType != "Laugh" && daNote.noteType != "Play Animation") {
switch (Math.abs(daNote.noteData))
{
case 2:
Expand Down Expand Up @@ -2453,7 +2453,7 @@ class PlayState extends MusicBeatState
else
health += 0.004;

if (note.noteType != "No Animation") {
if (note.noteType != "No Animation" && note.noteType != "Play Animation") {
switch (note.noteData)
{
case 2:
Expand Down Expand Up @@ -2492,7 +2492,7 @@ class PlayState extends MusicBeatState
var zeNoteType:String = notezzz.noteType;
var noteTypeParam:String = notezzz.noteTypeParam; // Funny little silly parameter in chart editor :P

trace("NTParam: "+noteTypeParam);
//trace("NTParam: "+noteTypeParam);

if (zeNoteType == null)
zeNoteType = "Normal";
Expand Down

0 comments on commit 49f7763

Please sign in to comment.