Skip to content

Commit

Permalink
space
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckeLucky committed Dec 17, 2024
1 parent 2f00cd1 commit 97e7421
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ end
function CustomMatchGroupUtil.computeGameOpponents(game, matchOpponents)
return Array.map(game.opponents, function (opponent, opponentIndex)
return Table.merge(opponent, {
players = Array.map(game.opponents[opponentIndex].players or {},function (player, playerIndex)
players = Array.map(game.opponents[opponentIndex].players or {}, function (player, playerIndex)
if Logic.isEmpty(player) then return nil end
return Table.merge(matchOpponents[opponentIndex].players[playerIndex] or {}, player)
end)
Expand Down

0 comments on commit 97e7421

Please sign in to comment.