Skip to content

Commit

Permalink
Merge pull request #24 from Jcw87/errors-comma
Browse files Browse the repository at this point in the history
Fix recipes that cut off the result at the comma
  • Loading branch information
expitau authored Jun 16, 2024
2 parents 24f8b21 + 315b759 commit 2226e8f
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 2226e8f

Please sign in to comment.