Skip to content

Commit

Permalink
implement items according to new structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Shashank Atreya committed Aug 22, 2024
1 parent f0b396d commit 197600e
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 197600e

Please sign in to comment.