diff options
-rw-r--r-- | server.js | 2 | ||||
-rw-r--r-- | tools/elo.js | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2346,7 +2346,7 @@ function is_winner(role, result) { } function elo_k(a) { - return a.count < 10 ? 60 : 30 + return 30 } function elo_ev(a, players) { diff --git a/tools/elo.js b/tools/elo.js index ad0dbad..f6064f1 100644 --- a/tools/elo.js +++ b/tools/elo.js @@ -14,7 +14,7 @@ function is_winner(role, result) { } function elo_k(n) { - return n < 10 ? 60 : 30 + return 30 } function elo_ev(a, players) { |