Skip to content

Commit

Permalink
change default value back
Browse files Browse the repository at this point in the history
  • Loading branch information
Rathoz committed Jan 17, 2025
1 parent e797e95 commit 31af63d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/standings/commons/standings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ function Standings.makeRounds(standings)
return {
round = roundIndex,
opponents = opponents,
finished = (record.extradata.rounds[roundIndex] or {}).finished or true,
started = (record.extradata.rounds[roundIndex] or {}).started or true,
finished = (record.extradata.rounds[roundIndex] or {}).finished or false,
started = (record.extradata.rounds[roundIndex] or {}).started or false,
title = (record.extradata.rounds[roundIndex] or {}).title or ('Round ' .. roundIndex),
}
end)
Expand Down

0 comments on commit 31af63d

Please sign in to comment.