Skip to content

Commit

Permalink
Fix recipes that cut off the result at the comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Jcw87 committed Jun 11, 2024
1 parent 24f8b21 commit 315b759
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/diff.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function main() {
}
}
for (let item of attemptedSet2) {
recipe = item.split(",,").map(x => data1.icons[x] + " " + x)
recipe = item.split(",,").map(x => data2.icons[x] + " " + x)
console.log("\x1b[32m+",recipe[0],"+",recipe[1],"=>",recipe[2])
}
console.log(data1.attempted.length, data2.attempted.length)
Expand Down
2 changes: 1 addition & 1 deletion web/data/data.json

Large diffs are not rendered by default.

0 comments on commit 315b759

Please sign in to comment.