Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
FallBackITA27 committed Apr 12, 2024
1 parent 536a13e commit bfe166a
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 @@ -288,7 +288,7 @@ document.getElementById("readInput").addEventListener("click", async function()
let cmpTime = megamerge[player][j];
if (time.track != cmpTime.track || time.flap != cmpTime.flap) continue;
if (time.time == cmpTime.time && !removal.has(i)) {
for (let removedTime of removedTimes) if (JSON.stringify(removedTime) === JSON.stringify(time)) continue;
for (let removedTime of removedTimes) {console.log(removedTime);if (JSON.stringify(removedTime) === JSON.stringify(time)) continue;}
removal.add(i);
removedTimes.push(time);
writeToOutput(`Removed ${writeTimeOutput(time)}, it has been submitted twice.`);
Expand Down

0 comments on commit bfe166a

Please sign in to comment.