Skip to content

Commit

Permalink
Merge pull request #323 from Elitesparkle/master
Browse files Browse the repository at this point in the history
Add draft turns (bans and picks) to Hero Details export
  • Loading branch information
ebshimizu authored Aug 6, 2024
2 parents 48885b5 + 429a1e5 commit 1b72559
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions js/exporters/hero-csv.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ function heroDataCSV(docs) {
// identifiers
outData += 'ToonHandle';
outData += ',name';
outData += ',turn';
outData += ',hero';
outData += ',date';
outData += ',win';
Expand Down Expand Up @@ -41,6 +42,7 @@ function heroDataCSV(docs) {
// identifiers
row += doc.ToonHandle;
row += ',' + doc.name;
row += ',' + doc.turn;
row += ',' + doc.hero;
row += ',' + doc.date;
row += ',' + (doc.win ? 'true' : 'false');
Expand Down

0 comments on commit 1b72559

Please sign in to comment.