From 1ea456be51ac74fe366c65f639a73c6131872e93 Mon Sep 17 00:00:00 2001 From: hjpalpha Date: Sat, 14 Dec 2024 16:25:40 +0100 Subject: [PATCH] switch to fix --- .../starcraft_starcraft2/match_summary_starcraft_ffa.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/match2/commons/starcraft_starcraft2/match_summary_starcraft_ffa.lua b/components/match2/commons/starcraft_starcraft2/match_summary_starcraft_ffa.lua index 6860efea69..ecad1ff798 100644 --- a/components/match2/commons/starcraft_starcraft2/match_summary_starcraft_ffa.lua +++ b/components/match2/commons/starcraft_starcraft2/match_summary_starcraft_ffa.lua @@ -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}