Skip to content

Commit

Permalink
Update transformMatch.js
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Aug 10, 2023
1 parent e2d28fa commit 62cc0d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/transformMatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function transformMatch(m) {
res[pl.isRadiant] = res[pl.isRadiant] || [];
res[pl.isRadiant][pl.lane] = res[pl.isRadiant][pl.lane] || 0;

res[pl.isRadiant][pl.lane] += pl.gold_t[10]
res[pl.isRadiant][pl.lane] += (pl.gold_t || [])[10]
return res;
}, {});

Expand Down

0 comments on commit 62cc0d2

Please sign in to comment.