Skip to content

Commit 9a99d87

Browse files
committed
Always show Unclear for <= 5 games
1 parent e2b23c3 commit 9a99d87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

battlefield/BattleStatistics.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ function TBattleResult.WinRateStdDev: double;
279279
Mu: double;
280280
D: double;
281281
begin
282-
if Total = 1 then
282+
if Total <= 5 then
283283
exit(1.0);
284284
Mu := WinRate;
285285
D := Mu * (1.0 - Mu) - Draw / (4.0 * Total);

0 commit comments

Comments
 (0)