From 0425f35c654a8280ecf51cd0cae29200ca4e052e Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 29 Dec 2021 15:35:46 +0100 Subject: [PATCH] raised min accuracy to 75% --- backend/api/controllers/result.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/api/controllers/result.js b/backend/api/controllers/result.js index 2552bce01..be1a29972 100644 --- a/backend/api/controllers/result.js +++ b/backend/api/controllers/result.js @@ -53,7 +53,7 @@ class ResultController { if ( result.wpm <= 0 || result.wpm > 350 || - result.acc < 50 || + result.acc < 75 || result.acc > 100 || result.consistency > 100 ) {