Skip to content

Commit

Permalink
Update match_summary.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanopedia authored Oct 15, 2024
1 parent 3035731 commit b206b89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/match2/wikis/deadlock/match_summary.lua
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,13 @@ function CustomMatchSummary.createBody(match)

-- Add the Hero Bans
if not Table.isEmpty(HeroBanData) then
local HeroBan = HeroBan()
local heroBan = HeroBan()

for gameIndex, banData in ipairs(HeroBanData) do
HeroBan:banRow(banData, gameIndex, banData.numberOfBans, match.date)
heroBan:banRow(banData, gameIndex, banData.numberOfBans, match.date)
end

body:addRow(HeroBan)
body:addRow(heroBan)
end

return body
Expand Down

0 comments on commit b206b89

Please sign in to comment.