Skip to content

Commit

Permalink
Milder abandon penalty
Browse files Browse the repository at this point in the history
  • Loading branch information
geneotech committed Aug 8, 2024
1 parent fd7c18f commit 6fcb104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/report_match.js
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,8 @@ router.post('/', apiKeyAuth, (req, res) => {
const ratings_for_present_winners = make_team_ratings(severity, "winner", false, false)[0];
const ratings_for_present_losers = make_team_ratings(severity, "loser" , false, false)[1];

const ratings_for_abandons_in_winners = make_team_ratings(2, "winner", true, true, 0)[0];
const ratings_for_abandons_in_losers = make_team_ratings(2, "loser" , true, true, 1)[1];
const ratings_for_abandons_in_winners = make_team_ratings(1, "winner", true, true, 0)[0];
const ratings_for_abandons_in_losers = make_team_ratings(1, "loser" , true, true, 1)[1];

const updated_winners = [];
const updated_losers = [];
Expand Down

0 comments on commit 6fcb104

Please sign in to comment.