Skip to content

Commit

Permalink
switch to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hjpalpha committed Dec 14, 2024
1 parent cf7579c commit 1ea456b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ end
function Parser.adjustGameOverviewColumns(columns)
Array.forEach(columns, function(column)
if column.id == 'placement' then
column.show = function(match) return not Logic.readBool(match.noScore) end
column.show = function(match) return true end
elseif column.id == 'kills' then
return
elseif column.id == 'points' then
column.show = function(match) return true end
column.show = function(match) return not Logic.readBool(match.noScore) end
column.row = {value = function(opponent)
return OpponentDisplay.InlineScore(Table.merge({extradata = {}, score = ''}, opponent))
end}
Expand Down

0 comments on commit 1ea456b

Please sign in to comment.