Skip to content

Commit

Permalink
no parenthesis in mkwpp parser
Browse files Browse the repository at this point in the history
  • Loading branch information
FallBackITA27 committed Jun 24, 2024
1 parent 3a591d7 commit 4e057e9
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 @@ -297,7 +297,7 @@ document.getElementById("readInput").addEventListener("click", async function()
let catString = "Combined";
if (bnosc && !constants.track_category[track]) catString = "NonSC";
if (track === 29 && !bflap) catString = "NonSC";
out.push(`(${data.players[player]},${catString},${track*2 + bflap},${time.time / 1000},${time.date},${time.comment === "" ? "N/A" : time.comment})`);
out.push(`${data.players[player]},${catString},${track*2 + bflap},${time.time / 1000},${time.date},${time.comment === "" ? "N/A" : time.comment}`);
}
}
writeToOutput("<sub>-------</sub> FINAL OUTPUT <sub>-------</sub>");
Expand Down

0 comments on commit 4e057e9

Please sign in to comment.