mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 17:04:49 +08:00
fixed challenge controller failing to verify funbox value
This commit is contained in:
parent
691963ddd0
commit
d66c1421a9
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ export function verify(result) {
|
|||
}
|
||||
}
|
||||
} else if (requirementType == "funbox") {
|
||||
let funboxMode = requirementValue[0];
|
||||
let funboxMode = requirementValue;
|
||||
if (funboxMode != result.funbox) {
|
||||
requirementsMet = false;
|
||||
failReasons.push(`${funboxMode} funbox not active`);
|
||||
|
|
Loading…
Reference in a new issue