Skip to content

Commit

Permalink
implement items according to new structure (#25)
Browse files Browse the repository at this point in the history
Co-authored-by: Shashank Atreya <[email protected]>
  • Loading branch information
godarkrai and Shashank Atreya authored Aug 26, 2024
1 parent f0b396d commit 7bb7846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/scripts/ext.dota2WebApi.toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ $( () => {
factionRoster += '|den=' + player.denies;
factionRoster += '|gpm=' + player.goldPerMinute;
factionRoster += '|xpm=' + player.xpPerMinute;
factionRoster += '|items=' + player.items.join( ',' );
factionRoster += '|items=' + player.items.map( ( item ) => item.name ).join( ',' );
// @TODO LONE DRUID BEAR ITEMS
factionRoster += '}}\n';
}
Expand Down

0 comments on commit 7bb7846

Please sign in to comment.