summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-12-28 15:25:17 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2017-12-28 15:25:17 +0100
commit216f9b1558200eb4eee59581fd181d4b0330f813 (patch)
treef59e94a922afbab3329e8f4c1e05833100a0a967
parent1456d6dfb9e1102afc8c0dd2404255b71471ad79 (diff)
downloadanalyzer-216f9b1558200eb4eee59581fd181d4b0330f813.tar.gz
analyzer-216f9b1558200eb4eee59581fd181d4b0330f813.zip
fix: swapped mu and sigma for existing accounts
-rw-r--r--worker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/worker.py b/worker.py
index 4c88f30..520d9fa 100644
--- a/worker.py
+++ b/worker.py
@@ -262,8 +262,8 @@ def process():
# calculate TrueSkill shared across all modes = starting point for all modes
if player.trueskill_mu is not None:
- sigma_shared = player.trueskill_mu
- mu_shared = player.trueskill_sigma
+ mu_shared = player.trueskill_mu
+ sigma_shared = player.trueskill_sigma
else:
# fallback 1 - approximate by max(ranked, blitz) points
rank_points = None