summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--server.js2
-rw-r--r--tools/elo.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/server.js b/server.js
index 0a4d80d..4b2b642 100644
--- a/server.js
+++ b/server.js
@@ -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) {