mirror of
https://github.com/FAUSheppy/skillbird
synced 2025-12-06 14:51:36 +01:00
change displayed to 2-sigma confidence
This commit is contained in:
@@ -22,7 +22,7 @@ def getPlayer():
|
||||
p = db.getPlayer(playerId)
|
||||
if not p:
|
||||
return ("Player not found", 404)
|
||||
return "{}'s Rating: {}".format(p.name, int(p.rating.mu - p.rating.sigma))
|
||||
return "{}'s Rating: {}".format(p.name, int(p.rating.mu - 2*p.rating.sigma))
|
||||
|
||||
#### Open Leaderboard ###
|
||||
@app.route('/findplayer')
|
||||
|
||||
Reference in New Issue
Block a user