Skip to content

Commit

Permalink
nill catches in standard ffa game
Browse files Browse the repository at this point in the history
  • Loading branch information
hjpalpha committed Dec 14, 2024
1 parent 6e0f6aa commit a931941
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/match2/commons/match_summary_base_ffa.lua
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ local GAME_OVERVIEW_COLUMNS = {
},
row = {
value = function (opponent)
return opponent.scoreBreakdown.kills
return (opponent.scoreBreakdown or {}).kills
end,
},
},
Expand Down Expand Up @@ -322,12 +322,12 @@ local GAME_STANDINGS_COLUMNS = {
},
sortVal = {
value = function (opponent, idx)
return opponent.scoreBreakdown.placePoints
return (opponent.scoreBreakdown or {}).placePoints
end,
},
row = {
value = function (opponent, idx)
return opponent.scoreBreakdown.placePoints
return (opponent.scoreBreakdown or {}).placePoints
end,
},
},
Expand All @@ -341,12 +341,12 @@ local GAME_STANDINGS_COLUMNS = {
},
sortVal = {
value = function (opponent, idx)
return opponent.scoreBreakdown.killPoints
return (opponent.scoreBreakdown or {}).killPoints
end,
},
row = {
value = function (opponent, idx)
return opponent.scoreBreakdown.killPoints
return (opponent.scoreBreakdown or {}).killPoints
end,
},
},
Expand Down

0 comments on commit a931941

Please sign in to comment.