diff --git a/components/match2/commons/match_group_input_util.lua b/components/match2/commons/match_group_input_util.lua index 6f522bb2f3..2b379dbcde 100644 --- a/components/match2/commons/match_group_input_util.lua +++ b/components/match2/commons/match_group_input_util.lua @@ -1491,6 +1491,7 @@ function MatchGroupInputUtil.parseSettings(match, opponentCount) status = statusSettings, settings = { showGameDetails = Logic.nilOr(Logic.readBoolOrNil(match.showgamedetails), true), + showKills = Logic.nilOr(Logic.readBoolOrNil(match.showkills), true), matchPointThreshold = tonumber(match.matchpoint), } } diff --git a/components/match2/commons/match_summary_ffa.lua b/components/match2/commons/match_summary_ffa.lua index aeeb7f7a5c..e470c0b045 100644 --- a/components/match2/commons/match_summary_ffa.lua +++ b/components/match2/commons/match_summary_ffa.lua @@ -192,7 +192,7 @@ local GAME_OVERVIEW_COLUMNS = { }, { show = function(match) - return match.extradata.settings.showGameDetails + return match.extradata.settings.showGameDetails and match.extradata.settings.showKills end, class = 'panel-table__cell__game-kills', icon = 'kills',