changed consistency check to sub 10

This commit is contained in:
Miodec 2021-03-02 01:39:23 +00:00
parent d29526a3ff
commit bdb24f0fc5

View file

@ -870,7 +870,7 @@ function validateResult(result) {
if (result.chartData.wpm.filter((w) => w > 400).length > 0) return false;
}
if (result.consistency < 25) return false;
if (result.consistency < 10) return false;
return true;
}