fixed challenge controller failing to verify funbox value

This commit is contained in:
Jack 2021-10-20 16:08:27 +01:00
parent 691963ddd0
commit d66c1421a9

View file

@ -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`);