Skip to content

Commit

Permalink
Export player names in CSV (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
J-who authored Feb 8, 2021
1 parent b69b074 commit ff948fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion REFlexFunctions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function RE:GetArenaTeamCSV(databaseID, player)
local team = {}
for i=1, #RE.Database[databaseID].Players do
if RE.Database[databaseID].Players[i][6] == faction then
tinsert(team, RE.Database[databaseID].Players[i][9].."-"..RE.Database[databaseID].Players[i][16])
tinsert(team, RE.Database[databaseID].Players[i][9].."-"..RE.Database[databaseID].Players[i][16].."-"..RE.Database[databaseID].Players[i][1])
end
end
tsort(team)
Expand Down

0 comments on commit ff948fa

Please sign in to comment.