Skip to content

Commit

Permalink
different output
Browse files Browse the repository at this point in the history
  • Loading branch information
FallBackITA27 committed Apr 11, 2024
1 parent 89ceaad commit 08f1035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkwpp-parser/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ document.getElementById("readInput").addEventListener("click", async function()
submission.times.sort((a,b)=>(a.track + a.flap)-(b.track + b.flap))
writeToOutput("Times submitted: "+submission.times.length);
for (let time of submission.times) {
writeToOutput(`${constants.track_names[time.track]}:${time.flap ? " flap" : ""}${time.nosc ? " nosc" : ""} ${formatMsToTime(time.time)} ${time.comment}`);
writeToOutput(`>> ${constants.track_names[time.track]}:${time.flap ? " flap" : ""}${time.nosc ? " nosc" : ""} ${formatMsToTime(time.time)} ${time.comment}`);
}
}
});
Expand Down

0 comments on commit 08f1035

Please sign in to comment.