Skip to content

Commit

Permalink
Fixing syncing lua error
Browse files Browse the repository at this point in the history
  • Loading branch information
Geigerkind committed Oct 4, 2018
1 parent 79b883e commit e1be4f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DPSMate/DPSMate_Sync.lua
Expand Up @@ -1346,7 +1346,7 @@ function DPSMate.Sync:DeathsOut()
for cat, val in pairs(DPSMateDeaths[1][pid]) do -- death count
for ca, va in pairs(val) do -- each part
if ca~="i" then -- Testing if this prevents the error
Buffer[cou] = {"DPSMate_Deaths", cat..","..ca..","..DPSMate:GetUserById(va[1])..","..DPSMate:GetAbilityById(va[2])..","..(va[3] or "0")..","..(va[4] or "0")..","..(va[5] or "0")..","..(va[6] or "0")..","..(va[7] or "0")..","}
Buffer[cou] = {"DPSMate_Deaths", cat..","..ca..","..(DPSMate:GetUserById(va[1]) or "Unknown")..","..(DPSMate:GetAbilityById(va[2]) or "Unknown")..","..(va[3] or "0")..","..(va[4] or "0")..","..(va[5] or "0")..","..(va[6] or "0")..","..(va[7] or "0")..","}
cou = cou + 1
end
end
Expand Down

0 comments on commit e1be4f0

Please sign in to comment.