From 3e92ea14388d476d9c03b56b5a3b0ddd91540c22 Mon Sep 17 00:00:00 2001 From: mbergen Date: Wed, 30 Oct 2024 11:43:19 +0100 Subject: [PATCH] fix(match2): MVP display missing on crossfire (#4968) fix(match2) Readd MVP display for crossfire --- components/match2/wikis/crossfire/match_summary.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/components/match2/wikis/crossfire/match_summary.lua b/components/match2/wikis/crossfire/match_summary.lua index badb404b049..d101d011267 100644 --- a/components/match2/wikis/crossfire/match_summary.lua +++ b/components/match2/wikis/crossfire/match_summary.lua @@ -41,6 +41,7 @@ function CustomMatchSummary.createBody(match) return MatchSummaryWidgets.Body{children = WidgetUtil.collect( showCountdown and MatchSummaryWidgets.Row{children = DisplayHelper.MatchCountdownBlock(match)} or nil, Array.map(match.games, CustomMatchSummary._createMapRow), + MatchSummaryWidgets.Mvp(match.extradata.mvp), MatchSummaryWidgets.Casters{casters = match.extradata.casters} )} end