Skip to content

Commit

Permalink
moron
Browse files Browse the repository at this point in the history
  • Loading branch information
FallBackITA27 committed Apr 12, 2024
1 parent ded0300 commit d0cf428
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mkwpp-parser/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,12 @@ document.getElementById("readInput").addEventListener("click", async function()
let token = trackData[i];
if (token.startsWith("n")) {
nosc = true;
trackData = trackData.splice(i,1);
trackData.splice(i,1);
i--;
}
if (token.startsWith("f") || token.startsWith("l")) {
flap = true;
trackData = trackData.splice(i,1);
trackData.splice(i,1);
i--;
}
}
Expand Down

0 comments on commit d0cf428

Please sign in to comment.