diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-12-28 15:25:17 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-12-28 15:25:17 +0100 |
| commit | 216f9b1558200eb4eee59581fd181d4b0330f813 (patch) | |
| tree | f59e94a922afbab3329e8f4c1e05833100a0a967 | |
| parent | 1456d6dfb9e1102afc8c0dd2404255b71471ad79 (diff) | |
| download | analyzer-216f9b1558200eb4eee59581fd181d4b0330f813.tar.gz analyzer-216f9b1558200eb4eee59581fd181d4b0330f813.zip | |
fix: swapped mu and sigma for existing accounts
| -rw-r--r-- | worker.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
