fix mobile equip

This commit is contained in:
ntr 2019-05-08 19:57:03 +10:00
parent d6262ca4b5
commit ec81393291

View File

@ -52,8 +52,8 @@ function InfoCryp(args) {
if (!cryp) return false;
function setHighlight(type) {
if (type === 'skill') return setVboxHighlight(vboxInfo.vars.filter(v => v.skill));
if (type === 'spec') return setVboxHighlight(vboxInfo.vars.filter(v => v.spec));
if (type === 'skill') return setVboxHighlight(vboxInfo.vars.filter(v => v.skill).map(v => v.v));
if (type === 'spec') return setVboxHighlight(vboxInfo.vars.filter(v => v.spec).map(v => v.v));
return false;
}