From 216f9b1558200eb4eee59581fd181d4b0330f813 Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 28 Dec 2017 15:25:17 +0100 Subject: fix: swapped mu and sigma for existing accounts --- worker.py | 4 ++-- 1 file 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 -- cgit v1.3.1