#5 added Hitgroup-Puppet to DamageSite

This commit is contained in:
2021-11-06 01:44:39 +01:00
committed by Giovanni Harting
parent ed6c6e799a
commit f401bcf879
16 changed files with 589 additions and 78 deletions

View File

@@ -99,3 +99,11 @@ export const sortObjectValue = (obj, direction = 'asc') => {
return sortable
}
export const CreatePlayersArray = (stats) => {
let arr = []
for (let i in stats) {
arr.push({team_id: stats[i].team_id, player: stats[i].player})
}
return arr
}