We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0
1 parent f3c744e commit 885d984Copy full SHA for 885d984
rounds.lua
@@ -412,7 +412,7 @@ function Rounds:PrepareBeginRound()
412
local round_index = self.round_count / Config.total_rounds_count
413
round_index = math.min(round_index, 1) -- make sure it is not greater than 1
414
for _, team in pairs(data.teams) do
415
- self.scores_this_round[team.team_id] = team.score
+ self.scores_this_round[team.team_id] = 0
416
chooser_scripts[team.team_id] = from_base64(team.select)
417
bot_scripts[team.team_id] = from_base64(team.act)
418
local rank_index = (Config.candidate_count - team.rank) / (Config.candidate_count - 1)
0 commit comments