Skip to content

Commit

Permalink
feat(match2): add space to OT-length on RL (#5104)
Browse files Browse the repository at this point in the history
RL: Re-add missing space to OT-length
  • Loading branch information
robbai authored Nov 18, 2024
1 parent f21f2cd commit d0da115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/match2/wikis/rocketleague/match_summary.lua
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ function CustomMatchSummary.createGame(date, game, gameIndex)
MatchSummaryWidgets.GameCenter{children = {
DisplayHelper.Map(game),
Logic.readBool(extradata.ot) and ' - OT' or nil,
Logic.isNotEmpty(extradata.otlength) and '(' .. extradata.otlength .. ')' or nil
Logic.isNotEmpty(extradata.otlength) and ' (' .. extradata.otlength .. ')' or nil
}},
MatchSummaryWidgets.GameTeamWrapper{children = makeTeamSection(2), flipped = true},
CustomMatchSummary._timeoutDisplay(extradata.timeout),
Expand Down

0 comments on commit d0da115

Please sign in to comment.