diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-22 20:08:28 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-22 20:08:28 +0200 |
| commit | 637da9ecd45fa431fe4371c9e6c4839da51701d3 (patch) | |
| tree | 373b7cb7326b5911888649300322e1f7121a0ff9 | |
| parent | 5514eadff7afbca1c575c4a2b979387a31751fe4 (diff) | |
| download | analyzer-637da9ecd45fa431fe4371c9e6c4839da51701d3.tar.gz analyzer-637da9ecd45fa431fe4371c9e6c4839da51701d3.zip | |
unknown player sigma env var should be int
| -rw-r--r-- | worker.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ DOCRUNCHMATCH = os.environ.get("DOCRUNCHMATCH") == "true" CRUNCH_PLAYER_QUEUE = os.environ.get("CRUNCH_PLAYER_QUEUE") or "crunch_player" DOTELESUCKMATCH = os.environ.get("DOTELESUCKMATCH") == "true" TELESUCK_QUEUE = os.environ.get("TELESUCK_QUEUE") or "telesuck" -UNKNOWN_PLAYER_SIGMA = os.environ.get("UNKNOWN_PLAYER_SIGMA") or 500 +UNKNOWN_PLAYER_SIGMA = int(os.environ.get("UNKNOWN_PLAYER_SIGMA")) or 500 # mapping from Tier (-1 - 30) to average skill tier points vst_points = { |
