Skip to content

Commit f7640db

Browse files
committed
temporary rank debug
1 parent 08faf67 commit f7640db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ZkData/Ef/WHR/Ranks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static float GetRankProgress(Account acc)
4343
var rankCeil = bracket.UpperEloLimit + stdev;
4444
var rankFloor = bracket.LowerEloLimit - stdev;
4545
bestProgress = Math.Max(bestProgress, Math.Min(1, (rating.RealElo - rankFloor) / (rankCeil - rankFloor)));
46-
//Trace.TraceInformation(acc.Name + ": bracket(" + bracket.LowerEloLimit + ", " + bracket.UpperEloLimit + ") requirements (" + rankFloor + ", " + rankCeil + ") current: " + rating.RealElo + " -> progress: " + bestProgress);
46+
Trace.TraceInformation(acc.Name + ": bracket(" + bracket.LowerEloLimit + ", " + bracket.UpperEloLimit + ") requirements (" + rankFloor + ", " + rankCeil + ") current: " + rating.RealElo + " -> progress: " + bestProgress);
4747
}
4848
if (!isActive) return 0.001f;
4949
return bestProgress;

0 commit comments

Comments
 (0)