mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-04 21:09:18 +08:00
removed the 250 wpm limit for now
This commit is contained in:
parent
cf6fa248b6
commit
3ec77e4a4f
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ let dbSnapshot = null;
|
|||
|
||||
function db_testCompleted(obj) {
|
||||
|
||||
if (obj.wpm == 0 || obj.wpm > 250 || obj.acc < 50 || obj.acc > 100) return false;
|
||||
if (obj.wpm == 0 || obj.wpm > 600 || obj.acc < 50 || obj.acc > 100) return false;
|
||||
|
||||
let uid = "";
|
||||
let user = firebase.auth().currentUser;
|
||||
|
|
Loading…
Reference in a new issue